Skip to content

Commit

Permalink
Handling special case of bdd/cudd in install.py --check
Browse files Browse the repository at this point in the history
  • Loading branch information
marcogario committed Mar 3, 2015
1 parent f66cc7c commit de87075
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions install.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,10 @@ def check_install():
required_solver = os.environ.get("PYSMT_SOLVER")
if required_solver is None:
required_solver = "None"
elif required_solver == "cudd":
# Special case for bdd
required_solver = "bdd"


for solver in ['msat', 'z3', 'cvc4', 'yices', 'bdd']:
is_installed = False
Expand Down

0 comments on commit de87075

Please sign in to comment.