numopt 0.2.1

Numerical optimization problem abstractions, solver interfaces, and modeling tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Optimization solver interfaces.

pub mod base;
pub mod clp_cmd;
pub mod cbc_cmd;

#[cfg(feature = "ipopt")] 
pub mod ipopt;

pub use base::{Solver, SolverParam, SolverStatus};

#[cfg(feature = "ipopt")] 
pub use ipopt::SolverIpopt;

pub use clp_cmd::SolverClpCmd;
pub use cbc_cmd::SolverCbcCmd;