libitofin 0.2.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
11
12
13
14
15
16
17
//! Constrained optimization ported from `ql/math/optimization/`.

pub mod conjugategradient;
pub mod constraint;
pub mod costfunction;
pub mod endcriteria;
pub mod levenbergmarquardt;
pub mod linesearch;
pub mod linesearchbasedmethod;
pub mod lmdif;
pub mod method;
pub mod problem;
pub mod simplex;
pub mod steepestdescent;

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