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

mod consts;
mod macros;

pub mod continuous;
pub mod core;
pub mod discrete;

pub use self::core::{Distribution, Probability};