pub enum DiscretizationScheme {
Exact,
Euler,
Milstein,
}Expand description
Time-stepping scheme for path-wise simulation.
Exact samples the process’s closed-form transition where one exists
(no discretization bias) and degrades to Euler where none does;
Euler and Milstein are the standard approximate schemes.
Variants§
Trait Implementations§
Source§impl Clone for DiscretizationScheme
impl Clone for DiscretizationScheme
Source§fn clone(&self) -> DiscretizationScheme
fn clone(&self) -> DiscretizationScheme
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for DiscretizationScheme
Source§impl Debug for DiscretizationScheme
impl Debug for DiscretizationScheme
impl Eq for DiscretizationScheme
Source§impl FromStr for DiscretizationScheme
impl FromStr for DiscretizationScheme
Source§impl PartialEq for DiscretizationScheme
impl PartialEq for DiscretizationScheme
impl StructuralPartialEq for DiscretizationScheme
Auto Trait Implementations§
impl Freeze for DiscretizationScheme
impl RefUnwindSafe for DiscretizationScheme
impl Send for DiscretizationScheme
impl Sync for DiscretizationScheme
impl Unpin for DiscretizationScheme
impl UnsafeUnpin for DiscretizationScheme
impl UnwindSafe for DiscretizationScheme
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