gomez 0.5.1

Framework and implementation for mathematical optimization and solving non-linear systems of equations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The collection of implemented algorithms.

pub mod lipo;
pub mod nelder_mead;
pub mod steffensen;
pub mod trust_region;

pub use lipo::Lipo;
pub use nelder_mead::NelderMead;
pub use steffensen::Steffensen;
pub use trust_region::TrustRegion;