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
12
13
14
15
16
//! # Entropic sampling using a replica exchange approach
//!
//! The entropic sampling itself is identical to the one from
//! [this module](`crate::entropic_sampling::EntropicSampling`)
//! with the difference being, that there will be replica exchanges between
//! neighboring intervals (and if you have multiple walker in an interval, they can exchange states as well)
//!
//! This is intended to improve the sampling of difficult "energy landscapes"
mod merge;
#[allow(clippy::module_inception)]
mod rees;
mod walker;

pub(crate) use merge::*;
pub use rees::*;
pub use walker::*;