more additions to automorphisms

This commit is contained in:
Jean-Philippe Bossuat
2025-01-10 21:52:40 +01:00
parent a6c1aa1c09
commit 74bfb52ada
8 changed files with 177 additions and 114 deletions

View File

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