pub enum SimulationMethod {
Deterministic,
Stochastic,
Hybrid,
TauLeaping,
}Expand description
Simulation method
Variants§
Deterministic
Deterministic ODE (LSODA)
Stochastic
Stochastic (Gillespie SSA)
Hybrid
Hybrid (adaptive switching)
TauLeaping
Tau-leaping (approximate stochastic)
Trait Implementations§
Source§impl Clone for SimulationMethod
impl Clone for SimulationMethod
Source§fn clone(&self) -> SimulationMethod
fn clone(&self) -> SimulationMethod
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 SimulationMethod
impl Debug for SimulationMethod
impl Copy for SimulationMethod
Auto Trait Implementations§
impl Freeze for SimulationMethod
impl RefUnwindSafe for SimulationMethod
impl Send for SimulationMethod
impl Sync for SimulationMethod
impl Unpin for SimulationMethod
impl UnwindSafe for SimulationMethod
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