Trait bio::stats::bayesian::model::Prior

source ·
pub trait Prior {
    type Event;

    // Required method
    fn compute(&self, event: &Self::Event) -> LogProb;
}
Expand description

Prior model.

Required Associated Types§

Required Methods§

source

fn compute(&self, event: &Self::Event) -> LogProb

Implementors§