relp 0.2.6

Rust Exact Linear Programming
Documentation
1
2
3
4
5
6
7
8
9
//! # Representing linear programs
//!
//! This module contains different representations of linear programs. Linear programs in general
//! form may contain any type of constraint, while linear programs in standard form may contain
//! equality constraints only.
pub mod elements;
pub mod general_form;
pub mod network;
pub mod solution;