pub trait VecZnxAutomorphism {
// Required method
fn vec_znx_automorphism<R, A>(
&self,
k: i64,
res: &mut R,
res_col: usize,
a: &A,
a_col: usize,
)
where R: VecZnxToMut,
A: VecZnxToRef;
}Required Methods§
Sourcefn vec_znx_automorphism<R, A>(
&self,
k: i64,
res: &mut R,
res_col: usize,
a: &A,
a_col: usize,
)where
R: VecZnxToMut,
A: VecZnxToRef,
fn vec_znx_automorphism<R, A>(
&self,
k: i64,
res: &mut R,
res_col: usize,
a: &A,
a_col: usize,
)where
R: VecZnxToMut,
A: VecZnxToRef,
Applies the automorphism X^i -> X^ik on the selected column of a and stores the result in res_col column of res.
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.