rmcmc 0.1.0

RMCMC is a Bayesian statistics toolkit with implements, among other algorithms, Markov-Chain-Monte-Carlo.
1
2
3
4
5
6
7
8
//! # Stepping Algorithms
//!

mod group;
mod srwm;

pub use self::group::Group;
pub use self::srwm::SRWM;