This commit is contained in:
Pro7ech
2025-10-22 16:43:46 +02:00
parent 5755aea58c
commit cedf7b9c59
26 changed files with 713 additions and 723 deletions

View File

@@ -116,7 +116,7 @@ where
}
}
res.set_p((p * key.p()) % (self.cyclotomic_order() as i64));
res.set_p((p * key.p()) % self.cyclotomic_order());
}
fn glwe_automorphism_key_automorphism_inplace<R, K>(&self, res: &mut R, key: &K, scratch: &mut Scratch<BE>)
@@ -160,6 +160,6 @@ where
}
}
res.set_p((res.p() * key.p()) % (self.cyclotomic_order() as i64));
res.set_p((res.p() * key.p()) % self.cyclotomic_order());
}
}