You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/hevm/hevm-cli/hevm-cli.hs
+4-4
Original file line number
Diff line number
Diff line change
@@ -121,7 +121,7 @@ data Command w
121
121
, showTree::w:::Bool<?>"Print branches explored in tree view"
122
122
, smttimeout::w:::MaybeInteger<?>"Timeout given to SMT solver in milliseconds (default: 60000)"
123
123
, maxIterations::w:::MaybeInteger<?>"Number of times we may revisit a particular branching point"
124
-
, solver::w:::MaybeText<?>"Used SMT solver: z3 (default) or cvc4"
124
+
, solver::w:::MaybeText<?>"Used SMT solver: z3 (default) or cvc5"
125
125
, smtdebug::w:::Bool<?>"Print smt queries sent to the solver"
126
126
, assertions::w:::Maybe [Word256] <?>"Comma seperated list of solc panic codes to check for (default: everything except arithmetic overflow)"
127
127
, askSmtIterations::w:::MaybeInteger<?>"Number of times we may revisit a particular branching point before we consult the smt solver to check reachability (default: 5)"
@@ -132,7 +132,7 @@ data Command w
132
132
, sig::w:::MaybeText<?>"Signature of types to decode / encode"
133
133
, smttimeout::w:::MaybeInteger<?>"Timeout given to SMT solver in milliseconds (default: 60000)"
134
134
, maxIterations::w:::MaybeInteger<?>"Number of times we may revisit a particular branching point"
135
-
, solver::w:::MaybeText<?>"Used SMT solver: z3 (default) or cvc4"
135
+
, solver::w:::MaybeText<?>"Used SMT solver: z3 (default) or cvc5"
, smtdebug::w:::Bool<?>"Print smt queries sent to the solver"
138
138
, askSmtIterations::w:::MaybeInteger<?>"Number of times we may revisit a particular branching point before we consult the smt solver to check reachability (default: 5)"
@@ -182,7 +182,7 @@ data Command w
182
182
, cache::w:::MaybeString<?>"Path to rpc cache repository"
183
183
, match::w:::MaybeString<?>"Test case filter - only run methods matching regex"
184
184
, covMatch::w:::MaybeString<?>"Coverage filter - only print coverage for files matching regex"
185
-
, solver::w:::MaybeText<?>"Used SMT solver: z3 (default) or cvc4"
185
+
, solver::w:::MaybeText<?>"Used SMT solver: z3 (default) or cvc5"
186
186
, smtdebug::w:::Bool<?>"Print smt queries sent to the solver"
187
187
, ffi::w:::Bool<?>"Allow the usage of the hevm.ffi() cheatcode (WARNING: this allows test authors to execute arbitrary code on your machine)"
188
188
, smttimeout::w:::MaybeInteger<?>"Timeout given to SMT solver in milliseconds (default: 60000)"
@@ -439,7 +439,7 @@ getSrcInfo cmd =
439
439
440
440
-- Although it is tempting to fully abstract calldata and give any hints about
441
441
-- the nature of the signature doing so results in significant time spent in
442
-
-- consulting z3 about rather trivial matters. But with cvc4 it is quite
442
+
-- consulting z3 about rather trivial matters. But with cvc5 it is quite
443
443
-- pleasant!
444
444
445
445
-- If function signatures are known, they should always be given for best results.
0 commit comments