Skip to main content

rustyqlib/utils/
rng.rs

1//! Convenience re-exports of the Monte Carlo machinery, which lives in
2//! [`core::montecarlo`](crate::core::montecarlo) as an asset-agnostic
3//! toolkit (RNG streams, Sobol/Halton sequences, Brownian bridge, variance
4//! reduction, sampling designs, statistics). New code should import from
5//! `core::montecarlo` directly.
6
7pub use crate::core::montecarlo::{
8    path_normals, path_rng, pseudo_normal_matrix, pseudo_normals, sobol_normals, BrownianBridge,
9    QmcSequence,
10};