SvpApplyDftToDftAdd

Trait SvpApplyDftToDftAdd 

Source
pub trait SvpApplyDftToDftAdd<B: Backend> {
    // Required method
    fn svp_apply_dft_to_dft_add<R, A, C>(
        &self,
        res: &mut R,
        res_col: usize,
        a: &A,
        a_col: usize,
        b: &C,
        b_col: usize,
    )
       where R: VecZnxDftToMut<B>,
             A: SvpPPolToRef<B>,
             C: VecZnxDftToRef<B>;
}
Expand description

Apply a scalar-vector product between a[a_col] and b[b_col] and adds the result on res[res_col].

Required Methods§

Source

fn svp_apply_dft_to_dft_add<R, A, C>( &self, res: &mut R, res_col: usize, a: &A, a_col: usize, b: &C, b_col: usize, )
where R: VecZnxDftToMut<B>, A: SvpPPolToRef<B>, C: VecZnxDftToRef<B>,

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§