1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix a bug with restart of ms-deals.

.reset() in LCRandom31 was not implemented. A test was added.

Thanks to Don.
This commit is contained in:
Shlomi Fish 2018-03-24 04:54:38 +03:00
parent ed61804855
commit 94cbbfafbf
2 changed files with 14 additions and 4 deletions

View file

@ -253,6 +253,9 @@ class LCRandom31(MFXRandom):
seq[n], seq[j] = seq[j], seq[n]
n -= 1
def reset(self):
self.setSeed(self.seed)
# select
# PysolRandom = LCRandom64

View file

@ -573,10 +573,11 @@ class MyTests(unittest.TestCase):
def test_main(self):
rand = constructRandom('24')
game = Game("freecell", rand, True)
# TEST
got_s = game.print_layout()
self.assertEqual(got_s, '''4C 2C 9C 8C QS 4S 2H
def test_24():
game = Game("freecell", rand, True)
got_s = game.print_layout()
self.assertEqual(got_s, '''4C 2C 9C 8C QS 4S 2H
5H QH 3C AC 3H 4H QD
QC 9S 6H 9H 3S KS 3D
5D 2S JC 5C JH 6D AS
@ -586,6 +587,12 @@ AH 5S 6S AD 8H JD
7S 6C 7D 4D 8S 9D
''', 'Deal 24')
# TEST
test_24()
rand.reset()
# TEST
test_24()
rand = constructRandom('ms123456')
game = Game("freecell", rand, True)
# TEST