libitofin 0.6.0

A ground-up Rust port of QuantLib: quantitative-finance primitives for pricing, risk, and numerical methods.
Documentation
//! Monte Carlo building blocks.
//!
//! Port of `ql/methods/montecarlo/`. This foundation ticket lands the weighted
//! [`Sample`]; the path generators, path pricers, and Monte Carlo model stack
//! stack on top in later tickets.

mod mcsimulation;
mod montecarlomodel;
mod multipath;
mod multipathgenerator;
mod path;
mod pathgen;
mod pathgenerator;
mod sample;

pub use mcsimulation::{DEFAULT_MIN_SAMPLES, McSimulation};
pub use montecarlomodel::{MonteCarloModel, PathPricer};
pub use multipath::MultiPath;
pub use multipathgenerator::MultiPathGenerator;
pub use path::Path;
pub use pathgen::PathGen;
pub use pathgenerator::PathGenerator;
pub use sample::Sample;