sampling 0.3.1

Large-deviation Algorithms like Wang-Landau, Entropic sampling and Replica-Exchange Wang-Landau. Also contains Binning, Histograms, Heatmaps and bootstrap resampling. This is intended for scientific simulations
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! # Wang Landau Implementation
mod helper;
mod traits;
#[allow(clippy::module_inception)]
mod wang_landau;
mod wang_landau_adaptive;

pub use helper::*;
pub use traits::*;
pub use wang_landau::*;
pub use wang_landau_adaptive::*;