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

Fix a bug that the iterations were 0 on unsolved

This commit is contained in:
Shlomi Fish 2018-03-13 13:50:14 +02:00
parent 9b4c85cae3
commit 66c7f6f10b

View file

@ -1150,14 +1150,12 @@ class BlackHoleSolver_Hint(Base_Solver_Hint):
break
self.dialog.setText(iter=iter_, depth=depth, states=states)
if (result == 'Intractable!'):
if result == 'Intractable!':
self.solver_state = 'intractable'
return
if (result == 'Unsolved!'):
elif result == 'Unsolved!':
self.solver_state = 'unsolved'
return
self.solver_state = 'solved'
else:
self.solver_state = 'solved'
hints = []
for sbytes in pout: