pub trait BNInference<T>where
T: BN,{
// Required method
fn estimate(&self, x: &Set<usize>, z: &Set<usize>) -> T::CPD;
}Expand description
A trait for inference with Bayesian Networks.
pub trait BNInference<T>where
T: BN,{
// Required method
fn estimate(&self, x: &Set<usize>, z: &Set<usize>) -> T::CPD;
}A trait for inference with Bayesian Networks.