SvpPrepare

Trait SvpPrepare 

Source
pub trait SvpPrepare<B: Backend> {
    // Required method
    fn svp_prepare<R, A>(
        &self,
        res: &mut R,
        res_col: usize,
        a: &A,
        a_col: usize,
    )
       where R: SvpPPolToMut<B>,
             A: ScalarZnxToRef;
}
Expand description

Required Methods§

Source

fn svp_prepare<R, A>(&self, res: &mut R, res_col: usize, a: &A, a_col: usize)
where R: SvpPPolToMut<B>, A: ScalarZnxToRef,

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.

Implementors§

Source§

impl<B> SvpPrepare<B> for Module<B>
where B: Backend + SvpPrepareImpl<B>,