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

pub mod problem;
pub mod solver;
pub mod model;
pub mod matrix;
pub mod macros;