Skip to content

Commit

Permalink
Merge pull request #422 from pysmt/upgrade/btor_2.4.1
Browse files Browse the repository at this point in the history
Boolector: Upgrade to 2.4.1
  • Loading branch information
mikand committed Aug 1, 2017
2 parents a08c694 + b931f49 commit 01149c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pysmt/cmd/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
Installer(Z3Installer, "4.4.1", {"osx": "10.11"}),
Installer(CVC4Installer, "1.5-prerelease", {"git_version" : "c15ff43597b41ea457befecb1b0e2402e28cb523"}),
Installer(YicesInstaller, "2.5.1", {"yicespy_version": "07439670a54d08a76cfb931194e1eaf07ea026a1"}),
Installer(BtorInstaller, "2.2.0", {"lingeling_version": "bal"}),
Installer(BtorInstaller, "2.4.1", {"lingeling_version": "bbc"}),
Installer(PicoSATInstaller, "960", {"pypicosat_minor_version" : "1610040816"}),
Installer(CuddInstaller, "2.0.3", {"git_version" : "75fe055c2a736a3ac3e971c1ade108b815edc96c"})]

Expand Down Expand Up @@ -134,13 +134,13 @@ def parse_options():
action='store_true', default=False,
help='Confirm that you agree with the licenses of the\
solvers and skip the interactive question')

install_path_default = os.path.join("~", ".smt_solvers")
parser.add_argument('--install-path', dest='install_path',
type=str, default=install_path_default,
help='The folder to use for the installation')

py_bindings = os.path.join(install_path_default,
py_bindings = os.path.join(install_path_default,
"python-bindings-%d.%d" % sys.version_info[0:2])
parser.add_argument('--bindings-path', dest='bindings_path',
type=str, default=py_bindings,
Expand Down

0 comments on commit 01149c3

Please sign in to comment.