Trait net_ensembles::sampling::entropic_sampling::EntropicEnsemble[][src]

pub trait EntropicEnsemble<E>: Entropic {
    fn ensemble(&self) -> &E;
unsafe fn ensemble_mut(&mut self) -> &mut E; }
Expand description

Required methods

return reference to current state of ensemble

returns mutable reference to ensemble

  • If, whatever you do with the ensemble, changes the energy of the current state, you cannot trust the results of entropic sampling anymore
  • use with care

Implementors