Skip to content

Commit

Permalink
rename similar to #95
Browse files Browse the repository at this point in the history
  • Loading branch information
mratsim committed Oct 13, 2023
1 parent e0587f4 commit 98cf974
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/derive/field.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ macro_rules! field_common {
) => {
/// Bernstein-Yang modular multiplicative inverter created for the modulus equal to
/// the characteristic of the field to invert positive integers in the Montgomery form.
const BYINVERTOR: $crate::bernsteinyang::BYInverter<6> =
$crate::bernsteinyang::BYInverter::<6>::new(&$modulus.0, &$r2.0);
const BYINVERTOR: $crate::ff_inverse::BYInverter<6> =
$crate::ff_inverse::BYInverter::<6>::new(&$modulus.0, &$r2.0);

impl $field {
/// Returns zero, the additive identity.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mod arithmetic;
mod bernsteinyang;
mod ff_inverse;
pub mod fft;
pub mod hash_to_curve;
pub mod msm;
Expand Down

0 comments on commit 98cf974

Please sign in to comment.