numopt/
lib.rs

1//! Numerical optimization problem abstractions, solver interfaces, and modeling tools.
2//! 
3//! ## Features
4//! - Abstractions for Minlp, Nlp, Milp, and Lp optimization problems.
5//! - Interfaces for COIN-OR optimization solvers Cbc, Clp, and Ipopt.
6//! - Modeling tools with automatic sparse first- and second-order derivatives.
7
8pub mod problem;
9pub mod solver;
10pub mod model;
11pub mod matrix;
12pub mod macros;