Skip to content

Commit c5a360b

Browse files
committed
correct iterations/depth parameters
1 parent 288606e commit c5a360b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

p-token/test-properties/run-proofs.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# table if -a given) with given run options (-o) and timeout (-t).
55
# Options and defaults:
66
# -t NUM : timeout in seconds (default 1h=3600)
7-
# -o STRING: prove-rs options. Default "--max-iterations 2000 --max-depth 500"
7+
# -o STRING: prove-rs options. Default "--max-iterations 500 --max-depth 2000"
88
# -a : run all start symbols from first table in `proofs.md` (1st column)
99
# -m : run all start symbols from multisig table in `proofs.md` (2nd column)
1010
# -c : continue existing proofs instead of reloading (which is default)
@@ -23,7 +23,7 @@ ALL_NAMES=$(sed -n -e 's/^| \(test_p[a-zA-Z0-9:_]*\) *|.*/\1/p' proofs.md)
2323
MULTISIG_NAMES=$(sed -n -e 's/^| m | \(test_p[a-zA-Z0-9:_]*\) *|.*/\1/p' proofs.md)
2424

2525
TIMEOUT=3600
26-
PROVE_OPTS="--max-iterations 2000 --max-depth 500"
26+
PROVE_OPTS="--max-iterations 500 --max-depth 2000"
2727
RELOAD_OPT="--reload"
2828

2929
while getopts ":t:o:amc" opt; do

0 commit comments

Comments
 (0)