libitofin 0.14.0

A ground-up Rust port of QuantLib: quantitative-finance primitives for pricing, risk, and numerical methods.
Documentation
1
2
3
4
5
6
7
8
9
10
//! SABR swaption volatility cube internals (#596). Ticket #601 (T3a) lands the
//! inner [`Cube`] parameter store; the cube surface and calibration (T3b-d) follow
//! as siblings here.

mod cube;
mod sabrcube;

#[allow(unused_imports)]
pub(crate) use cube::Cube;
pub use sabrcube::SabrSwaptionVolatilityCube;