1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
extern crate num_traits;
extern crate num_integer;

pub mod vec;
#[cfg(test)]
mod vec_test;

pub mod mat;
#[cfg(test)]
mod mat_test;

pub use vec::*;
pub use mat::*;