|
@@ -146,7 +146,16 @@ def solve(working, domains, unassigned, count):
|
|
|
if (count >= 10000):
|
|
|
print("took too long")
|
|
|
return False
|
|
|
- result = solve(working, newdomains, copy.deepcopy(unassigned), count)
|
|
|
+
|
|
|
+ # check for invalidated nodes (empty domains)
|
|
|
+ flag = True
|
|
|
+ result = False
|
|
|
+ for i in range(0, 9):
|
|
|
+ for j in range(0, 9):
|
|
|
+ if (not newdomains[i][j]):
|
|
|
+ flag = False
|
|
|
+
|
|
|
+ if (flag): result = solve(working, newdomains, copy.deepcopy(unassigned), count)
|
|
|
if (result):
|
|
|
return result
|
|
|
else:
|
|
@@ -285,7 +294,7 @@ def solveh(working, domains, unassigned, count):
|
|
|
newdomains = infer(domains, working, index[0], index[1], val)
|
|
|
for i in range(0, 9):
|
|
|
for j in range(0, 9):
|
|
|
- if (not domains[i][j]):
|
|
|
+ if (not newdomains[i][j]):
|
|
|
flag = False
|
|
|
|
|
|
count += 1
|