pub trait WangLandauEnergy<Energy>: WangLandau {
    fn energy(&self) -> Option<&Energy>;
}
Expand description

trait to request the current energy from a WangLandau simulation

  • None if the energy was not calculated yet
  • See also WangLandauEEH

Required Methods

returns the last accepted Energy calculated None if no energy was calculated yet

Implementors