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

Refactoring

This commit is contained in:
Shlomi Fish 2018-03-13 14:19:32 +02:00
parent 66c7f6f10b
commit a28001d44b

View file

@ -1144,18 +1144,13 @@ class BlackHoleSolver_Hint(Base_Solver_Hint):
if DEBUG >= 5:
print(s)
m = re.search('^(Intractable!|Unsolved!|Solved!)', s.rstrip())
m = re.search('^(Intractable|Unsolved|Solved)!', s.rstrip())
if m:
result = m.group(1)
break
self.dialog.setText(iter=iter_, depth=depth, states=states)
if result == 'Intractable!':
self.solver_state = 'intractable'
elif result == 'Unsolved!':
self.solver_state = 'unsolved'
else:
self.solver_state = 'solved'
self.dialog.setText(iter=iter_, depth=depth, states=states)
self.solver_state = result.lower()
hints = []
for sbytes in pout: