Skip to content

Commit 24cdf3e

Browse files
committed
Update default on cli
1 parent d72a1a4 commit 24cdf3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cli/cli.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ data Command w
102102
, solverThreads :: w ::: Maybe Natural <?> "Number of threads for each solver instance. Only respected for Z3 (default: 1)"
103103
, loopDetectionHeuristic :: w ::: LoopHeuristic <!> "StackBased" <?> "Which heuristic should be used to determine if we are in a loop: StackBased (default) or Naive"
104104
, 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)"
106106
}
107107
| Equivalence -- prove equivalence between two programs
108108
{ codeA :: w ::: ByteString <?> "Bytecode of the first program"
@@ -123,7 +123,7 @@ data Command w
123123
, solverThreads :: w ::: Maybe Natural <?> "Number of threads for each solver instance. Only respected for Z3 (default: 1)"
124124
, loopDetectionHeuristic :: w ::: LoopHeuristic <!> "StackBased" <?> "Which heuristic should be used to determine if we are in a loop: StackBased (default) or Naive"
125125
, 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)"
127127
}
128128
| Exec -- Execute a given program with specified env & calldata
129129
{ code :: w ::: Maybe ByteString <?> "Program bytecode"
@@ -173,7 +173,7 @@ data Command w
173173
, maxIterations :: w ::: Maybe Integer <?> "Number of times we may revisit a particular branching point. For no bound, set -1 (default: 5)"
174174
, loopDetectionHeuristic :: w ::: LoopHeuristic <!> "StackBased" <?> "Which heuristic should be used to determine if we are in a loop: StackBased (default) or Naive"
175175
, 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)"
177177
, numCexFuzz :: w ::: Integer <!> "3" <?> "Number of fuzzing tries to do to generate a counterexample (default: 3)"
178178
, 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)"
179179
}

0 commit comments

Comments
 (0)