diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-10 11:21:38 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-10 11:21:38 -0400 |
commit | cad3a75f16a4f970e96830359cb62f3802ec0b6c (patch) | |
tree | f171e113662324121479c8b998d4845f5fca0dd7 /bench/bench.sh | |
parent | 20cf56fd225d341ab1ae1c6924e73b7e28583b1c (diff) | |
download | bfs-cad3a75f16a4f970e96830359cb62f3802ec0b6c.tar.xz |
bench: Don't print paths in the --strategies benchmark
Diffstat (limited to 'bench/bench.sh')
-rw-r--r-- | bench/bench.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/bench.sh b/bench/bench.sh index e0943d4..1294fd1 100644 --- a/bench/bench.sh +++ b/bench/bench.sh @@ -421,7 +421,7 @@ bench-strategies-corpus() { for bfs in "${BFS[@]}"; do subsubgroup '%s' "$bfs" - cmds=("$bfs -S "{bfs,dfs,ids,eds}" $2") + cmds=("$bfs -S "{bfs,dfs,ids,eds}" $2 -false") do-hyperfine "${cmds[@]}" done } |