quantsupport 0.1.0

Rust library for fixed-income, derivative pricing and risk analytics.
Documentation
1
2
3
4
5
6
7
8
/// Implementation of the Bisection method.
pub mod bisection;
/// Implementation of the Newton-Raphson method.
pub mod newtonraphson;
/// Solver traits module
pub mod solvertraits;
/// Implementation of a vector Newton solver.
pub mod vectornewton;