Skip to content

Commit

Permalink
Fix yices timeout argument (#1817)
Browse files Browse the repository at this point in the history
  • Loading branch information
feliam committed Nov 6, 2020
1 parent 5b5f37c commit be91243
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manticore/core/smtlib/solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ def _solver_version(self) -> Version:
class YicesSolver(SMTLIBSolver):
def __init__(self):
init = ["(set-logic QF_AUFBV)"]
command = f"{consts.yices_bin} --timeout={consts.timeout * 1000} --incremental"
command = f"{consts.yices_bin} --timeout={consts.timeout} --incremental"
super().__init__(
command=command,
init=init,
Expand Down

0 comments on commit be91243

Please sign in to comment.