diff --git a/algebra/src/polynomial/mod.rs b/algebra/src/polynomial/mod.rs index c363c8df..563db283 100644 --- a/algebra/src/polynomial/mod.rs +++ b/algebra/src/polynomial/mod.rs @@ -5,4 +5,4 @@ mod ntt_polynomial; pub use native_polynomial::Polynomial; pub use ntt_polynomial::{ ntt_add_mul_assign, ntt_add_mul_assign_fast, ntt_add_mul_inplace, NTTPolynomial, -}; \ No newline at end of file +}; diff --git a/algebra/tests/derive_test.rs b/algebra/tests/derive_test.rs index ba11f055..ca41fdae 100644 --- a/algebra/tests/derive_test.rs +++ b/algebra/tests/derive_test.rs @@ -136,4 +136,4 @@ fn test_decompose() { }); assert_eq!(compose, a); -} \ No newline at end of file +} diff --git a/bool/src/bfhe/evaluate.rs b/bool/src/bfhe/evaluate.rs index 10194d2a..e8ce29be 100644 --- a/bool/src/bfhe/evaluate.rs +++ b/bool/src/bfhe/evaluate.rs @@ -1,8 +1,9 @@ use algebra::{NTTField, Polynomial}; use fhe_core::{ lwe_modulus_switch, lwe_modulus_switch_assign_between_modulus, lwe_modulus_switch_inplace, - BlindRotationType, KeySwitchingKeyEnum, KeySwitchingLWEKey, KeySwitchingRLWEKey, LWECiphertext, - LWEModulusType, Parameters, ProcessType, BlindRotationKey, SecretKeyPack, Steps, + BlindRotationKey, BlindRotationType, KeySwitchingKeyEnum, KeySwitchingLWEKey, + KeySwitchingRLWEKey, LWECiphertext, LWEModulusType, Parameters, ProcessType, SecretKeyPack, + Steps, }; /// The evaluator of the homomorphic encryption scheme.