pub trait WangLandauHist<Hist>: WangLandau {
    // Required method
    fn hist(&self) -> &Hist;
}
Expand description

trait to request the current histogram from a WangLandau simulation

  • Note: The histogram will likely be reset multiple times during a simulation
  • See also WangLandauEEH

Required Methods§

source

fn hist(&self) -> &Hist

returns current histogram
  • Note: histogram will be reset multiple times during the simulation
  • please refere to the papers

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Hist, R, E, S, Res, Energy> WangLandauHist<Hist> for WangLandau1T<Hist, R, E, S, Res, Energy>

source§

impl<R, E, S, Res, Hist, Energy> WangLandauHist<Hist> for WangLandauAdaptive<Hist, R, E, S, Res, Energy>