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:
parent
9b4c85cae3
commit
66c7f6f10b
1 changed files with 4 additions and 6 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue