make 'invalidate' benchmark shorter

This commit is contained in:
Ralf Jung 2024-03-17 14:30:03 +01:00
parent dd5b4f5fc0
commit a6f362f471

View file

@ -1,4 +1,4 @@
fn main() {
// The end of the range is just chosen to make the benchmark run for a few seconds.
for _ in 0..200_000 {}
for _ in 0..50_000 {}
}