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: cli/cli.hs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -102,7 +102,7 @@ data Command w
102
102
, solverThreads::w:::MaybeNatural<?>"Number of threads for each solver instance. Only respected for Z3 (default: 1)"
103
103
, loopDetectionHeuristic::w:::LoopHeuristic<!>"StackBased"<?>"Which heuristic should be used to determine if we are in a loop: StackBased (default) or Naive"
104
104
, noDecompose::w:::Bool<?>"Don't decompose storage slots into separate arrays"
105
-
, maxBranch::w:::Int<!>"10"<?>"Max number of branches to explore when encountering a symbolic value (default: 100)"
105
+
, maxBranch::w:::Int<!>"100"<?>"Max number of branches to explore when encountering a symbolic value (default: 100)"
106
106
}
107
107
| Equivalence-- prove equivalence between two programs
108
108
{codeA::w:::ByteString<?>"Bytecode of the first program"
@@ -123,7 +123,7 @@ data Command w
123
123
, solverThreads::w:::MaybeNatural<?>"Number of threads for each solver instance. Only respected for Z3 (default: 1)"
124
124
, loopDetectionHeuristic::w:::LoopHeuristic<!>"StackBased"<?>"Which heuristic should be used to determine if we are in a loop: StackBased (default) or Naive"
125
125
, noDecompose::w:::Bool<?>"Don't decompose storage slots into separate arrays"
126
-
, maxBranch::w:::Int<!>"10"<?>"Max number of branches to explore when encountering a symbolic value (default: 100)"
126
+
, maxBranch::w:::Int<!>"100"<?>"Max number of branches to explore when encountering a symbolic value (default: 100)"
127
127
}
128
128
| Exec-- Execute a given program with specified env & calldata
129
129
{code::w:::MaybeByteString<?>"Program bytecode"
@@ -173,7 +173,7 @@ data Command w
173
173
, maxIterations::w:::MaybeInteger<?>"Number of times we may revisit a particular branching point. For no bound, set -1 (default: 5)"
174
174
, loopDetectionHeuristic::w:::LoopHeuristic<!>"StackBased"<?>"Which heuristic should be used to determine if we are in a loop: StackBased (default) or Naive"
175
175
, noDecompose::w:::Bool<?>"Don't decompose storage slots into separate arrays"
176
-
, maxBranch::w:::Int<!>"10"<?>"Max number of branches to explore when encountering a symbolic value (default: 100)"
176
+
, maxBranch::w:::Int<!>"100"<?>"Max number of branches to explore when encountering a symbolic value (default: 100)"
177
177
, numCexFuzz::w:::Integer<!>"3"<?>"Number of fuzzing tries to do to generate a counterexample (default: 3)"
178
178
, askSmtIterations::w:::Integer<!>"1"<?>"Number of times we may revisit a particular branching point before we consult the smt solver to check reachability (default: 1)"
0 commit comments