Add scripts/run-sim helper

...to run the simulator in a loop with different seeds.
This commit is contained in:
Pekka Enberg 2025-01-14 17:19:58 +02:00
parent 9c9a6e5821
commit 1df1f7afc5

7
scripts/run-sim Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
set -e
while true; do
cargo run -p limbo_sim
done