libitofin 0.6.1

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
11
12
13
14
15
16
17
//! Concrete 1-D solvers ported from `ql/math/solvers1d/`.
//!
//! Each solver implements [`Solver1D`](crate::math::solver1d::Solver1D) and so
//! shares the bracketing driver in [`solver1d`](crate::math::solver1d).

pub mod bisection;
pub mod brent;
pub mod falseposition;
pub mod finitedifferencenewtonsafe;
pub mod halley;
pub mod newton;
pub mod newtonsafe;
pub mod ridder;
pub mod secant;

#[cfg(test)]
pub(crate) mod testkit;