1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#[cfg(test)]
#[macro_use]
extern crate approx;
#[cfg(not(test))]
extern crate approx;
extern crate num_traits;

pub use matrix::*;
pub use vector::*;

mod matrix;
mod vector;