pub trait CpuLogpFuncMaker: Send + Sync {
    type Func: CpuLogpFunc;

    fn make_logp_func(&self) -> Result<Self::Func, Box<dyn Error + Send + Sync>>;
    fn dim(&self) -> usize;
}

Required Associated Types

Required Methods

Implementors