1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//! # A linear program solver
//!
//! Linear programs are solved using the Simplex Method as described in the book Combinatorial
//! Optimization by Christos H. Papadimitriou and Kenneth Steiglitz.
#![warn(missing_docs)]

#![allow(incomplete_features)]
#![feature(is_sorted)]
#![feature(drain_filter)]
#![feature(result_cloned)]
#![feature(specialization)]
#![feature(min_type_alias_impl_trait)]
#![feature(associated_type_bounds)]
#![feature(trait_alias)]
#![feature(generic_associated_types)]
#![feature(const_generics)]
#![feature(vecdeque_binary_search)]
#![feature(map_first_last)]

extern crate daggy;
extern crate num;

pub mod algorithm;
pub mod data;
pub mod io;

#[cfg(test)]
mod tests;