1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
extern crate blas;
#[cfg(test)]
extern crate blas_src;
extern crate lapack;
#[cfg(test)]
extern crate lapack_src;
extern crate rand;
extern crate rayon;
extern crate thiserror;

pub mod macros;
pub mod matrix;
pub mod number;
pub mod tensor;

pub use matrix::*;
pub use number::*;
pub use tensor::*;