//! PRNG-backed [`IndexSampler`] used by the CLI forecast commands.
//!
//! The domain only sees the [`IndexSampler`] trait; `rand` lives here so
//! the choice of algorithm (and the entropy source for the seed) stays an
//! infra concern.
use StdRng;
use ;
use crateIndexSampler;
/// Seeded [`StdRng`]-backed sampler. Construct it with a concrete `seed`
/// (the CLI resolves `--seed` or draws one from the OS).