pub struct ABCParticle {
pub trace: Trace,
pub weight: f64,
}Expand description
A weighted ABC-SMC particle: a parameter trace with its importance weight.
Fields§
§trace: TraceThe accepted parameter trace.
weight: f64Normalized importance weight within the population.
Trait Implementations§
Source§impl Clone for ABCParticle
impl Clone for ABCParticle
Source§fn clone(&self) -> ABCParticle
fn clone(&self) -> ABCParticle
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 moreAuto Trait Implementations§
impl Freeze for ABCParticle
impl RefUnwindSafe for ABCParticle
impl Send for ABCParticle
impl Sync for ABCParticle
impl Unpin for ABCParticle
impl UnsafeUnpin for ABCParticle
impl UnwindSafe for ABCParticle
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