stochastic-rs-quant 2.0.0-beta.2

Quantitative finance: pricing, calibration, vol surfaces, instruments.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! # Bonds
//!
//! $$
//! P(t,T)=\mathbb E_t^{\mathbb Q}\!\left[e^{-\int_t^T r_s ds}\right]
//! $$
//!
pub mod cir;
pub mod hull_white;
pub mod vasicek;

pub use cir::Cir;
pub use hull_white::HullWhite;
pub use vasicek::Vasicek;