pub trait InitPointFunc {
    // Required method
    fn new_init_point<R: Rng + ?Sized>(&mut self, rng: &mut R, out: &mut [f64]);
}
Expand description

Propose new initial points for a sampler

This trait can be implemented by users to control how the different chains should be initialized when using sample_parallel.

Required Methods§

source

fn new_init_point<R: Rng + ?Sized>(&mut self, rng: &mut R, out: &mut [f64])

Implementors§