pub enum PathDraws {
Pseudo {
seed: u64,
sqrt_dt: f64,
},
Qmc {
seq: QmcSequence,
bridge: BrownianBridge,
},
}Expand description
Deterministic per-path Brownian increment source. Pseudo-random paths come in antithetic pairs (2k, 2k+1) from independent per-pair streams; low-discrepancy paths are sequence points routed through the Brownian bridge.
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for PathDraws
impl RefUnwindSafe for PathDraws
impl Send for PathDraws
impl Sync for PathDraws
impl Unpin for PathDraws
impl UnsafeUnpin for PathDraws
impl UnwindSafe for PathDraws
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