Skip to content

Commit

Permalink
Merge branch 'master' into TACAS2021
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilpim authored Oct 23, 2020
2 parents 0ec8f72 + c42d7bc commit 0d72818
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions medleysolver/constants.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
from collections import OrderedDict, namedtuple

SOLVERS = OrderedDict({
"Z3" : "z3",
"Z3" : "~/tools/z3/bin/z3",
"CVC4" : "~/tools/cvc4",
"BOOLECTOR" : "~/tools/boolector/boolector/bin/boolector",
"YICES": "~/bin/yices-smt2",
"BOOLECTOR" : "~/tools/boolector/build/bin/boolector",
"YICES": "~/tools/yices/bin/yices-smt2",
"MathSAT": "~/tools/mathsat/bin/mathsat",
"Bitwuzla": "~/tools/Bitwuzla/bin/bitwuzla",
"Bitwuzla": "~/tools/bitwuzla/bin/bitwuzla",
})

SAT_RESULT = 'sat'
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@
packages = find_packages(),
install_requires = [
'numpy',
'z3',
'z3-solver',
'tqdm',
'dill'
'dill',
'sklearn',
],
)
)

0 comments on commit 0d72818

Please sign in to comment.