1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#![allow(unused_imports)]		// Allowed because compiler complains about/doesnt recognize macro imports only used in tests
#![allow(non_snake_case)]		// Allowed to follow LP standard naming procedure

#[macro_use]
extern crate rulinalg;
extern crate assert_approx_eq;

#[macro_use]
extern crate approx;


pub mod builder;
pub mod lp;
pub mod parser;
pub mod solver;

#[allow(dead_code)]	// print_matrix mainly for debugging
mod utils;