//! Safe, user-facing trait definitions for Module-LWE operations.
//!
//! Traits are organized by operation family:
//! - `automorphism` -- Galois automorphisms on ciphertexts and automorphism keys.
//! - `conversion` -- conversions between ciphertext representations.
//! - `decryption` -- secret-key decryption operations.
//! - `encryption` -- secret/public-key encryption and evaluation-key generation.
//! - `external_product` -- GLWE/GGLWE/GGSW external products.
//! - `keyswitching` -- LWE/GLWE/GGLWE/GGSW key-switching.
//! - `noise` -- runtime noise measurement helpers for ciphertexts.
//! - `operations` -- arithmetic helpers, packing, trace, and tensoring.
//!
//! Scheme authors can program against these traits directly. Execution is
//! dispatched through the [`crate::oep`] backend extension points by blanket
//! implementations in the (private) `delegates` module.
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;