Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
xiangxiecrypto committed Nov 19, 2024
1 parent f201f5a commit cb50fed
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion algebra/src/polynomial/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
};
2 changes: 1 addition & 1 deletion algebra/tests/derive_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,4 @@ fn test_decompose() {
});

assert_eq!(compose, a);
}
}
5 changes: 3 additions & 2 deletions bool/src/bfhe/evaluate.rs
Original file line number Diff line number Diff line change
@@ -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.
Expand Down

0 comments on commit cb50fed

Please sign in to comment.