SamplerStats

Trait SamplerStats 

Source
pub trait SamplerStats<M: Math> {
    type Stats: Storable<StatsDims>;
    type StatsOptions: Copy + Send + Sync;

    // Required method
    fn extract_stats(
        &self,
        math: &mut M,
        opt: Self::StatsOptions,
    ) -> Self::Stats;
}

Required Associated Types§

Required Methods§

Source

fn extract_stats(&self, math: &mut M, opt: Self::StatsOptions) -> Self::Stats

Implementors§