Skip to content

Commit

Permalink
zipperposition made conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
philzook58 committed Oct 24, 2024
1 parent fc55a9c commit 5510cb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion kdrag/solvers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,6 @@ class MultiSolver(BaseSolver):
solver_classes = [
VampireTHFSolver,
EProverTHFSolver,
ZipperpositionSolver,
LeoIIISolver,
]
if shutil.which("zipperposition") is not None:
Expand Down
3 changes: 2 additions & 1 deletion tests/test_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,8 @@ def check(s):
assert check(VampireTHFSolver()) == smt.unsat
assert check(EProverTHFSolver()) == smt.unsat
assert check(MultiSolver()) == smt.unsat
assert check(ZipperpositionSolver()) == smt.unsat
if shutil.which("zipperposition") is not None:
assert check(ZipperpositionSolver()) == smt.unsat
assert check(smt.Solver()) == smt.unsat
assert check(solvers.VampireSolver()) == smt.unsat

Expand Down

0 comments on commit 5510cb9

Please sign in to comment.