1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Malliavin–Thalmaier Greeks computation engine. //! //! See Kohatsu-Higa & Yasuda (2008), §6 (Theorem 6.1). mod cross_gamma_vega; mod delta; mod greeks; mod localization; mod payoff; #[cfg(test)] mod tests; pub use greeks::MtGreeks; pub use payoff::MtPayoff;