It has been [almost two years]({% post_url 2020-09-28-miri %}) since my last Miri status update.
---
It has been [almost two years]({% post_url 2020-09-28-miri %}) since my last Miri status update.
@@ -179,8+180,9 @@ Miri is not *truly* random, but uses a pseudo-random number generator to make al
This means you can explore various different possible choices by passing different *seeds* for Miri to use for its pseudo-random number generator.
The following little shell snippet will run Miri with many different seeds, which is great to be able to locally reproduce a failure that you saw on CI, but that you are having trouble reproducing:
```
This means you can explore various different possible choices by passing different *seeds* for Miri to use for its pseudo-random number generator.
The following little shell snippet will run Miri with many different seeds, which is great to be able to locally reproduce a failure that you saw on CI, but that you are having trouble reproducing:
```
-for seed in $({ echo obase=16; seq 0 255; } | bc); do