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

trait to request the current histogram from a Entropic simulation

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

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> EntropicHist<Hist> for EntropicSampling<Hist, R, E, S, Res, Energy>
where Hist: Histogram, R: Rng,

source§

impl<Hist, R, E, S, Res, Energy> EntropicHist<Hist> for EntropicSamplingAdaptive<Hist, R, E, S, Res, Energy>
where Hist: Histogram, R: Rng,