RustyQLib 0.0.3

RustyQLib is a lightweight yet robust quantitative finance library designed to price derivatives and perform risk analysis
Documentation
1
2
3
4
5
6
7
8
9
10
//! Convenience re-exports of the Monte Carlo machinery, which lives in
//! [`core::montecarlo`](crate::core::montecarlo) as an asset-agnostic
//! toolkit (RNG streams, Sobol/Halton sequences, Brownian bridge, variance
//! reduction, sampling designs, statistics). New code should import from
//! `core::montecarlo` directly.

pub use crate::core::montecarlo::{
    path_normals, path_rng, pseudo_normal_matrix, pseudo_normals, sobol_normals, BrownianBridge,
    QmcSequence,
};