797 B
797 B
Determinism Policy
MabeLabRS emphasizes reproducibility of artificial life experiments.
Randomness
- Use
rand_chacha::ChaCha8Rng(fast, reproducible). - Seeds must be explicit and logged in experiment manifests.
Floating-point
- Default:
f64. - Avoid nondeterministic parallel reductions; when needed, gate behind
the
fast-mathfeature. - Golden tests should tolerate ≤ 1e-12 relative error in float comparisons.
Collections
- Use
BTreeMap/BTreeSetwhen deterministic ordering is required. - Use
indexmap::IndexMap/IndexSetfor hash-backed structures that preserve insertion order.
Parallelism
- Sequential by default.
rayonparallelism only behindparallelfeature flag.- Golden tests must run with
--no-default-featuresto guarantee determinism.