updated repo for publishing (#74)

This commit is contained in:
Jean-Philippe Bossuat
2025-08-17 14:57:39 +02:00
committed by GitHub
parent 0be569eca0
commit 62eb87cc07
244 changed files with 374 additions and 539 deletions

24
poulpy-core/src/lib.rs Normal file
View File

@@ -0,0 +1,24 @@
mod automorphism;
mod conversion;
mod decryption;
mod dist;
mod encryption;
mod external_product;
mod glwe_packing;
mod glwe_trace;
mod keyswitching;
mod noise;
mod operations;
mod scratch;
mod utils;
pub use operations::*;
pub mod layouts;
pub use dist::*;
pub use glwe_packing::*;
pub use scratch::*;
pub(crate) const SIX_SIGMA: f64 = 6.0;
pub mod tests;