pub enum SimulationType {
WangLandau1T = 0,
WangLandau1TAdaptive = 1,
Entropic = 2,
EntropicAdaptive = 3,
REWL = 4,
REES = 5,
Unknown = 6,
}
Expand description
Enum to track simulation type
Variants§
WangLandau1T = 0
Simulation was a 1/t Wang-Landau simulation
WangLandau1TAdaptive = 1
Simulation was an adaptive 1/t Wang-Landau simulation
Entropic = 2
Simulation was Entropic sampling
EntropicAdaptive = 3
Simulation was adaptive Entropic sampling
REWL = 4
Simulation was Replica exchange Wang Landau (1/t)
REES = 5
Simulation was Replica exchange Entropic sampling
Unknown = 6
Simulation type is unknown
Implementations§
Trait Implementations§
Source§impl Clone for SimulationType
impl Clone for SimulationType
Source§fn clone(&self) -> SimulationType
fn clone(&self) -> SimulationType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SimulationType
impl Debug for SimulationType
Source§impl<'de> Deserialize<'de> for SimulationType
impl<'de> Deserialize<'de> for SimulationType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for SimulationType
impl Serialize for SimulationType
impl Copy for SimulationType
Auto Trait Implementations§
impl Freeze for SimulationType
impl RefUnwindSafe for SimulationType
impl Send for SimulationType
impl Sync for SimulationType
impl Unpin for SimulationType
impl UnwindSafe for SimulationType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more