Skip to content

Commit

Permalink
dreal not loading properly hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
xhajnal committed May 21, 2020
1 parent 6984d81 commit 04f310b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/refine_space.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@
from common.space_stuff import refine_by

if "wind" not in platform.system().lower():
from dreal import logical_and, logical_or, logical_not, Variable, CheckSatisfiability
try:
from dreal import logical_and, logical_or, logical_not, Variable, CheckSatisfiability
except ImportError as err:
print(f"Error while loading dreal {err}")

config = load_config()
results_dir = config["results"]
Expand Down

0 comments on commit 04f310b

Please sign in to comment.