1
2
3
4
5
6
7
8
9
//! # For sampling ensembl
//! contains traits and helper structs

/// Contains traits useful for sampling an ensemble
/// like MarkovChain or Metropolis etc.
pub mod traits;
mod metropolis_helper;

pub use metropolis_helper::*;