Skip to content

Commit

Permalink
artifact change
Browse files Browse the repository at this point in the history
  • Loading branch information
“Nikhil committed Oct 23, 2020
1 parent b1b89ad commit c42d7bc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
9 changes: 4 additions & 5 deletions medleysolver/constants.py
Original file line number Diff line number Diff line change
@@ -1,13 +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",
# "Vampire": "~/tools/vampire --input_syntax smtlib2 ",
"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 c42d7bc

Please sign in to comment.