Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Certora] Fix timeouts #421

Merged
merged 6 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 1 addition & 5 deletions certora/confs/ConsistentState.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@
"verify": "MetaMorphoHarness:certora/specs/ConsistentState.spec",
"loop_iter": "2",
"optimistic_loop": true,
"prover_args": [
"-depth 3",
"-mediumTimeout 20",
"-timeout 300",
],
"smt_timeout": "600",
"rule_sanity": "basic",
"server": "production",
"msg": "MetaMorpho Consistent State"
Expand Down
2 changes: 2 additions & 0 deletions certora/confs/Enabled.conf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"-depth 3",
"-mediumTimeout 20",
"-timeout 1000",
"-smt_easy_LIA true",
],
"smt_timeout": "7000",
"rule_sanity": "basic",
"server": "production",
"msg": "MetaMorpho Enabled"
Expand Down
5 changes: 2 additions & 3 deletions certora/confs/Liveness.conf
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@
"loop_iter": "2",
"optimistic_loop": true,
"prover_args": [
"-depth 3",
"-mediumTimeout 20",
"-timeout 120",
"-smt_easy_LIA true",
],
"smt_timeout": "7000",
"rule_sanity": "basic",
"server": "production",
"msg": "MetaMorpho Liveness"
Expand Down
6 changes: 4 additions & 2 deletions certora/confs/Range.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@
"loop_iter": "2",
"optimistic_loop": true,
"prover_args": [
"-depth 3",
"-mediumTimeout 20",
"-depth 0",
"-timeout 300",
"-smt_nonLinearArithmetic true",
"-adaptiveSolverConfig false",
"-solvers [z3:def{randomSeed=1},z3:def{randomSeed=2},z3:def{randomSeed=3},z3:def{randomSeed=4},z3:def{randomSeed=5},z3:def{randomSeed=6},z3:def{randomSeed=7},z3:def{randomSeed=8},z3:def{randomSeed=9},z3:def{randomSeed=10}]",
],
"rule_sanity": "basic",
"server": "production",
Expand Down
2 changes: 1 addition & 1 deletion certora/confs/Reverts.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"prover_args": [
"-depth 5",
"-mediumTimeout 40",
"-newSplitParallel true",
"-splitParallel true",
"-splitParallelInitialDepth 4",
"-splitParallelTimelimit 7000",
"-adaptiveSolverConfig false",
Expand Down
Loading