pub trait Stop<T>: StoppingRule {
type Status;
// Required method
fn stop<const N: usize>(
&mut self,
em: &T,
status: &Self::Status,
sfs: &Sfs<N>,
) -> bool;
}Expand description
A type capable of deciding whether an EM algorithm should stop.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.