pub trait CpuLogpFuncMaker<Func>: Send + Syncwhere
    Func: CpuLogpFunc,{
    // Required methods
    fn make_logp_func(&self, chain: usize) -> Result<Func, Error>;
    fn dim(&self) -> usize;
}

Required Methods§

source

fn make_logp_func(&self, chain: usize) -> Result<Func, Error>

source

fn dim(&self) -> usize

Implementors§