rmcmc 0.1.0

RMCMC is a Bayesian statistics toolkit with implements, among other algorithms, Markov-Chain-Monte-Carlo.
#![feature(associated_type_defaults)]
#![feature(test)]

#[cfg(feature = "serde_support")]
#[macro_use]
extern crate serde_derive;

extern crate rand;

extern crate rv;

#[macro_use]
pub mod lens;
pub mod parameter;
pub mod traits;

pub mod runner;
pub mod steppers;
pub mod utils;