pub trait EntropicEnergy<Energy>: Entropic {
    fn energy(&self) -> &Energy;
}
Expand description

trait to request the current energy from a Entropic simulation

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

Required Methods

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

Implementors