1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
extern crate rand;
extern crate spaces;
extern crate ndarray;
extern crate ndarray_linalg;
extern crate special_fun;

mod consts;
mod macros;

pub mod core;
pub mod univariate;
pub mod multivariate;

import_all!(mixture);

pub use self::core::Probability;
pub use self::core::distribution::*;