Skip to content

Commit fef2202

Browse files
committed
Better checking of results
1 parent 1031494 commit fef2202

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/data/get_data_ganak.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -359,9 +359,9 @@ def find_bad_solve(fname):
359359
line = line.strip()
360360
if "bad_alloc" in line:
361361
mem_out = 1
362-
elif "c s SATISFIABLE" in line:
362+
elif line.startswith("s SATISFIABLE"):
363363
not_solved = False
364-
elif "c s UNSATISFIABLE" in line:
364+
elif line.startswith("s UNSATISFIABLE"):
365365
not_solved = False
366366

367367
return mem_out, not_solved

0 commit comments

Comments
 (0)