Updated automorphism from permuation

This commit is contained in:
Jean-Philippe Bossuat
2025-01-16 11:07:39 +01:00
parent a5838c8726
commit 8de8af8fa9
5 changed files with 124 additions and 72 deletions

View File

@@ -44,7 +44,7 @@ fn main() {
p0.0[i] = i as u64
}
r.a_apply_automorphism_into_b::<false>(&p0, 2 * r.n - 1, nth_root, &mut p1);
r.a_apply_automorphism_native_into_b::<false>(&p0, 2 * r.n - 1, nth_root, &mut p1);
println!("{:?}", p1);
}