Commit c40022ac authored by Kento HASEGAWA's avatar Kento HASEGAWA

Fix bugs

parent d6cc21b2
import argparse
import os import os
import subprocess import subprocess
from solvers.twd import solver if __name__ == '__main__':
import solver
else:
from solvers.twd import solver
proc = None proc = None
stop_flag = False stop_flag = False
...@@ -68,7 +72,6 @@ def solve(params): ...@@ -68,7 +72,6 @@ def solve(params):
# print(errs) # print(errs)
solution = '' solution = ''
print(returncode)
if returncode == 10: # 10 when SAT if returncode == 10: # 10 when SAT
status = 'done' status = 'done'
if not stop_flag: if not stop_flag:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment