pub trait VecZnxAutomorphismInplace<B: Backend> {
// Required method
fn vec_znx_automorphism_inplace<R>(
&self,
k: i64,
res: &mut R,
res_col: usize,
scratch: &mut Scratch<B>,
)
where R: VecZnxToMut;
}Required Methods§
Sourcefn vec_znx_automorphism_inplace<R>(
&self,
k: i64,
res: &mut R,
res_col: usize,
scratch: &mut Scratch<B>,
)where
R: VecZnxToMut,
fn vec_znx_automorphism_inplace<R>(
&self,
k: i64,
res: &mut R,
res_col: usize,
scratch: &mut Scratch<B>,
)where
R: VecZnxToMut,
Applies the automorphism X^i -> X^ik on the selected column of a.
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.