Trait rv::test::GewekeTestable

source ·
pub trait GewekeTestable<Fx, X> {
    // Required methods
    fn prior_draw<R: Rng>(&self, rng: &mut R) -> Fx;
    fn update_params<R: Rng>(&self, data: &[X], rng: &mut R) -> Fx;
    fn geweke_stats(&self, fx: &Fx, xs: &[X]) -> BTreeMap<String, f64>;
}

Required Methods§

source

fn prior_draw<R: Rng>(&self, rng: &mut R) -> Fx

source

fn update_params<R: Rng>(&self, data: &[X], rng: &mut R) -> Fx

source

fn geweke_stats(&self, fx: &Fx, xs: &[X]) -> BTreeMap<String, f64>

Object Safety§

This trait is not object safe.

Implementors§