lp_solvers/
lib.rs

1#![deny(missing_docs)]
2//! A library to write problems in the .lp file format
3//! and call external solvers to solve them.
4
5pub mod lp_format;
6pub mod problem;
7pub mod solvers;
8pub mod util;