Struct emcee::Step [] [src]

pub struct Step<'a> {
    pub pos: &'a [Guess],
    pub lnprob: &'a [f32],
}

Struct representing the current iteration evaluation

This struct is used with sample, which supplies a callback to each loop step. An instance of this struct is passed to the callback.

Fields

The current list of parameters, one for each walker

The log posterior probabilities of the values contained in pos, one for each walker

Trait Implementations

impl<'a> Debug for Step<'a>
[src]

Formats the value using the given formatter.