Skip to content

Commit

Permalink
Double default solver timeout to 240 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Hennenfent committed Nov 6, 2020
1 parent 43ae3fa commit 0f62e65
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 @@ -44,7 +44,7 @@ class SolverType(config.ConfigEnum):

logger = logging.getLogger(__name__)
consts = config.get_group("smt")
consts.add("timeout", default=120, description="Timeout, in seconds, for each Z3 invocation")
consts.add("timeout", default=240, description="Timeout, in seconds, for each Z3 invocation")
consts.add("memory", default=1024 * 8, description="Max memory for Z3 to use (in Megabytes)")
consts.add(
"maxsolutions",
Expand Down

0 comments on commit 0f62e65

Please sign in to comment.