pub struct ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res> { /* private fields */ }
Expand description

Efficient replica exchange Wang landau

  • use this to quickly build your own parallel replica exchange wang landau simulation

Tipp

Use the short hand Rewl

Citations

  • the following paper were used to progamm this - you should cite them, if you use this library for a publication!

Y. W. Li, T. Vogel, T. Wüst and D. P. Landau, “A new paradigm for petascale Monte Carlo simulation: Replica exchange Wang-Landau sampling,” J. Phys.: Conf. Ser. 510 012012 (2014), DOI 10.1088/1742-6596/510/1/012012

T. Vogel, Y. W. Li, T. Wüst and D. P. Landau, “Exploring new frontiers in statistical physics with a new, parallel Wang-Landau framework,” J. Phys.: Conf. Ser. 487 012001 (2014), DOI 10.1088/1742-6596/487/1/012001

T. Vogel, Y. W. Li, T. Wüst and D. P. Landau, “Scalable replica-exchange framework for Wang-Landau sampling,” Phys. Rev. E 90: 023302 (2014), DOI 10.1103/PhysRevE.90.023302

R. E. Belardinelli and V. D. Pereyra, “Fast algorithm to calculate density of states,” Phys. Rev. E 75: 046701 (2007), DOI 10.1103/PhysRevE.75.046701

F. Wang and D. P. Landau, “Efficient, multiple-range random walk algorithm to calculate the density of states,” Phys. Rev. Lett. 86, 2050–2053 (2001), DOI 10.1103/PhysRevLett.86.2050

Implementations§

source§

impl<Ensemble, R, Hist, Energy, S, Res> ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>

source

pub fn walkers(&self) -> &Vec<RewlWalker<R, Hist, Energy, S, Res>>

Read access to internal rewl walkers
  • each of these walkers independently samples an interval.
  • see paper for more infos
source

pub fn ensemble_iter( &self ) -> impl Iterator<Item = RwLockReadGuard<'_, Ensemble>>

Iterator over ensembles

If you do not know what RwLockReadGuard<'a, Ensemble> is - do not worry. you can just pretend it is &Ensemble and everything should work out fine, since it implements Deref. Of cause, you can also take a look at RwLockReadGuard

source

pub fn get_ensemble( &self, index: usize ) -> Option<RwLockReadGuard<'_, Ensemble>>

read access to your ensembles
  • None if index out of range
  • If you do not know what RwLockReadGuard<Ensemble> is - do not worry. you can just pretend it is &Ensemble and everything will work out fine, since it implements Deref. Of cause, you can also take a look at RwLockReadGuard
source

pub unsafe fn ensemble_iter_mut( &mut self ) -> impl Iterator<Item = &mut Ensemble>

Mutable iterator over ensembles
Safety
  • it is assumed, that whatever you change has no effect on the Markov Chain, the result of the energy function etc.
  • might panic if a thread is poisened
source

pub unsafe fn get_ensemble_mut(&mut self, index: usize) -> Option<&mut Ensemble>

mut access to your ensembles
  • if possible, prefer get_ensemble
  • None if index out of range
Safety
  • it is assumed, that whatever you change has no effect on the Markov Chain, the result of the energy function etc.
  • might panic if a thread is poisened
source

pub fn num_intervals(&self) -> NonZeroUsize

source

pub fn walkers_per_interval(&self) -> NonZeroUsize

Returns number of walkers per interval

source

pub fn change_step_size_of_interval( &mut self, n: usize, step_size: usize ) -> Result<(), ()>

Change step size for markov chain of walkers
  • changes the step size used in the sweep
  • changes step size of all walkers in the nth interval
  • returns Err if index out of bounds, i.e., the requested interval does not exist
  • interval counting starts at 0, i.e., n=0 is the first interval
source

pub fn get_step_size_of_interval(&self, n: usize) -> Option<usize>

Get step size for markov chain of walkers
  • returns None if index out of bounds, i.e., the requested interval does not exist
  • interval counting starts at 0, i.e., n=0 is the first interval
source

pub fn change_sweep_size_of_interval( &mut self, n: usize, sweep_size: NonZeroUsize ) -> Result<(), ()>

Change sweep size for markov chain of walkers
  • changes the sweep size used in the sweep
  • changes sweep size of all walkers in the nth interval
  • returns Err if index out of bounds, i.e., the requested interval does not exist
  • interval counting starts at 0, i.e., n=0 is the first interval
source

pub fn get_sweep_size_of_interval(&self, n: usize) -> Option<NonZeroUsize>

Get sweep size for markov chain of walkers
  • returns None if index out of bounds, i.e., the requested interval does not exist
  • interval counting starts at 0, i.e., n=0 is the first interval
source

pub fn min_roundtrips(&self) -> usize

Minimum of roundtrips

Definition of roundtrip: If a walker is in the leftest interval, then in the rightest and then in the leftest again (or the other way around) then this is counted as one roundtrip.

This will return the minimum of roundtrips

source

pub fn max_roundtrips(&self) -> usize

Maximum of roundtrips

Definition of roundtrip: If a walker is in the leftest interval, then in the rightest and then in the leftest again (or the other way around) then this is counted as one roundtrip.

This will return the maximum of roundtrips

source

pub fn roundtrip_iter(&self) -> impl Iterator<Item = usize> + '_

Roundtrips

Definition of roundtrip: If a walker is in the leftest interval, then in the rightest and then in the leftest again (or the other way around) then this is counted as one roundtrip.

This will return an iterator over the roundtrips

source

pub fn largest_log_f(&self) -> f64

returns largest value of factor log_f present in the walkers

source

pub fn log_f_vec(&self) -> Vec<f64>

Log_f factors of the walkers
  • the log_f’s will be reduced towards 0 during the simulation
source

pub fn set_log_f_threshold( &mut self, new_threshold: f64 ) -> Result<f64, ThresholdErrors>

change the threshold of log_f
  • it has to be a positive, normal number
source

pub fn is_finished(&self) -> bool

Is the simulation finished?

checks if all walkers have factors log_f that are below the threshold you chose

source

pub fn derivative_merged_log_prob_and_aligned( &self ) -> Result<Glued<Hist, Energy>, HistErrors>

Results of the simulation

This is what we do the simulation for!

It uses derivative merging to give you a Glued which you can use to write the data into a file. The derivative merged is explained in derivative_merged_log_prob_and_aligned

Notes

Fails if the internal histograms (intervals) do not align. Might fail if there is no overlap between neighboring intervals

source

pub fn average_merged_log_probability_and_align( &self ) -> Result<Glued<Hist, Energy>, HistErrors>

Results of the simulation

This is what we do the simulation for!

It uses average merging to give you a Glued which you can use to write the data into a file. The average merged is explained in average_merged_and_aligned

Notes

Fails if the internal histograms (intervals) do not align. Might fail if there is no overlap between neighboring intervals

source

pub fn get_id_vec(&self) -> Vec<usize>

Get Ids

This is an indicator that the replica exchange works. In the beginning, this will be a sorted vector, e.g. [0,1,2,3,4]. Then it will show, where the ensemble, which the corresponding walkers currently work with, originated from. E.g. If the vector is [3,1,0,2,4], Then walker 0 has a ensemble originating from walker 3, the walker 1 is back to its original ensemble, walker 2 has an ensemble originating form walker 0 and so on.

source

pub fn hists(&self) -> Vec<&Hist>

source

pub fn get_hist(&self, index: usize) -> Option<&Hist>

read access to internal histogram
  • None if index out of range
source

pub fn into_rees(self) -> Rees<(), Ensemble, R, Hist, Energy, S, Res>
where Hist: Histogram,

Convert into Rees

This creates a Replica exchange entropic sampling simulation from this Replica exchange wang landau simulation

source

pub fn into_rees_with_extra<Extra>( self, extra: Vec<Extra> ) -> Result<Rees<Extra, Ensemble, R, Hist, Energy, S, Res>, (Self, Vec<Extra>)>
where Hist: Histogram,

Convert into Rees
  • similar to into_rees, though now we can store extra information. The extra information can be anything, e.g., files in which each walker should later write information every nth step or something else entirely.
important
  • The vector extra must be exactly as long as the walker slice and each walker is assigned the corresponding entry from the vector extra
  • You can look at the walker slice with the walkers method
source§

impl<Ensemble, R, Hist, Energy, S, Res> ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>
where R: Send + Sync + Rng + SeedableRng, Hist: Send + Sync + Histogram + HistogramVal<Energy>, Energy: Send + Sync + Clone, Ensemble: MarkovChain<S, Res>, Res: Send + Sync, S: Send + Sync,

source

pub fn simulate_until_convergence<F>(&mut self, energy_fn: F)
where Ensemble: Send + Sync, R: Send + Sync, F: Fn(&mut Ensemble) -> Option<Energy> + Copy + Send + Sync,

Perform the Replica exchange wang landau simulation
  • will simulate until all walkers have factors log_f that are below the threshold you chose
source

pub fn simulate_while<F, C>(&mut self, energy_fn: F, condition: C)
where Ensemble: Send + Sync, R: Send + Sync, F: Fn(&mut Ensemble) -> Option<Energy> + Copy + Send + Sync, C: FnMut(&Self) -> bool,

Perform the Replica exchange wang landau simulation
  • will simulate until all walkers have factors log_f that are below the threshold you chose or
  • until condition returns false
source

pub fn check_energy_fn<F>(&mut self, energy_fn: F) -> bool
where Energy: PartialEq, F: Fn(&mut Ensemble) -> Option<Energy> + Copy + Send + Sync, Ensemble: Sync + Send,

Sanity check
  • checks if the stored (i.e., last) energy(s) of the system match with the result of energy_fn
source

pub fn sweep<F>(&mut self, energy_fn: F)
where Ensemble: Send + Sync, R: Send + Sync, F: Fn(&mut Ensemble) -> Option<Energy> + Copy + Send + Sync,

Sweep
  • Performs one sweep of the Replica exchange wang landau simulation
  • You can make a complete simulation, by repeatatly calling this method until self.is_finished() returns true

Trait Implementations§

source§

impl<Ensemble: Debug, R: Debug, Hist: Debug, Energy: Debug, S: Debug, Res: Debug> Debug for ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de, Ensemble, R, Hist, Energy, S, Res> Deserialize<'de> for ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>
where Ensemble: Deserialize<'de>, R: Deserialize<'de>, Hist: Deserialize<'de>, Energy: Deserialize<'de>, S: Deserialize<'de>, Res: Deserialize<'de>,

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<Ensemble, R, Hist, Energy, S, Res> From<ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>> for Rees<(), Ensemble, R, Hist, Energy, S, Res>
where Hist: Histogram,

source§

fn from(rewl: Rewl<Ensemble, R, Hist, Energy, S, Res>) -> Self

Converts to this type from the input type.
source§

impl<Ensemble, R, Hist, Energy, S, Res> GlueAble<Hist> for ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>
where Hist: Clone,

source§

fn push_glue_entry_ignoring( &self, job: &mut GlueJob<Hist>, ignore_idx: &[usize] )

source§

fn push_glue_entry(&self, job: &mut GlueJob<H>)

source§

impl<Ensemble, R, Hist, Energy, S, Res> Serialize for ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>
where Ensemble: Serialize, R: Serialize, Hist: Serialize, Energy: Serialize, S: Serialize, Res: Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl<Ensemble, R, Hist, Energy, S, Res> RefUnwindSafe for ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>

§

impl<Ensemble, R, Hist, Energy, S, Res> Send for ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>
where Energy: Send, Ensemble: Send, Hist: Send, R: Send, Res: Send, S: Send,

§

impl<Ensemble, R, Hist, Energy, S, Res> Sync for ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>
where Energy: Sync, Ensemble: Send + Sync, Hist: Sync, R: Sync, Res: Sync, S: Sync,

§

impl<Ensemble, R, Hist, Energy, S, Res> Unpin for ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>
where Energy: Unpin, Ensemble: Unpin, Hist: Unpin, R: Unpin, Res: Unpin, S: Unpin,

§

impl<Ensemble, R, Hist, Energy, S, Res> UnwindSafe for ReplicaExchangeWangLandau<Ensemble, R, Hist, Energy, S, Res>
where Energy: UnwindSafe, Hist: UnwindSafe, R: UnwindSafe, Res: UnwindSafe, S: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<S, T> Cast<T> for S
where T: Conv<S>,

§

fn cast(self) -> T

Cast from Self to T Read more
§

fn try_cast(self) -> Result<T, Error>

Try converting from Self to T Read more
§

impl<S, T> CastApprox<T> for S
where T: ConvApprox<S>,

§

fn try_cast_approx(self) -> Result<T, Error>

Try approximate conversion from Self to T Read more
§

fn cast_approx(self) -> T

Cast approximately from Self to T Read more
§

impl<S, T> CastFloat<T> for S
where T: ConvFloat<S>,

§

fn cast_trunc(self) -> T

Cast to integer, truncating Read more
§

fn cast_nearest(self) -> T

Cast to the nearest integer Read more
§

fn cast_floor(self) -> T

Cast the floor to an integer Read more
§

fn cast_ceil(self) -> T

Cast the ceiling to an integer Read more
§

fn try_cast_trunc(self) -> Result<T, Error>

Try converting to integer with truncation Read more
§

fn try_cast_nearest(self) -> Result<T, Error>

Try converting to the nearest integer Read more
§

fn try_cast_floor(self) -> Result<T, Error>

Try converting the floor to an integer Read more
§

fn try_cast_ceil(self) -> Result<T, Error>

Try convert the ceiling to an integer Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,