Skip to content

Commit

Permalink
Merge pull request #237 from pysmt/i232/boolector2.2.0
Browse files Browse the repository at this point in the history
Boolector: Updated to version 2.2.0
  • Loading branch information
mikand committed Mar 15, 2016
2 parents 22174bf + 8ec91a7 commit 2abfb45
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pysmt/cmd/install.py
Expand Up @@ -32,7 +32,7 @@
Installer(Z3Installer, "4.4.1", {}),
Installer(CVC4Installer, "1.5-prerelease", {"git_version" : "68f22235a62f5276b206e9a6692a85001beb8d42"}),
Installer(YicesInstaller, "2.4.1", {}),
Installer(BtorInstaller, "2.1.1", {}),
Installer(BtorInstaller, "2.2.0", {"lingeling_version": "bal"}),
Installer(PicoSATInstaller, "960", {}),
Installer(CuddInstaller, "2.0.3", {"git_version" : "4861f4df8abc2ca205a6a09b30fdc8cfd29f6ebb"})]

Expand Down
5 changes: 3 additions & 2 deletions pysmt/cmd/installers/btor.py
Expand Up @@ -22,8 +22,9 @@ class BtorInstaller(SolverInstaller):
SOLVER = "btor"

def __init__(self, install_dir, bindings_dir, solver_version,
mirror_link=None):
archive_name = "boolector-%s-with-lingeling-b85.tar.bz2" % solver_version
mirror_link=None, lingeling_version=None):
archive_name = "boolector-%s-with-lingeling-%s.tar.bz2" % \
(solver_version, lingeling_version)
native_link = "http://fmv.jku.at/boolector/{archive_name}"
SolverInstaller.__init__(self, install_dir=install_dir,
bindings_dir=bindings_dir,
Expand Down

0 comments on commit 2abfb45

Please sign in to comment.