Skip to content

Commit

Permalink
make tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
iAmMichaelConnor committed Sep 25, 2024
1 parent 841294d commit a516ad8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/fields/bls12_377Fq.nr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Blurb sourced from https://github.com/arkworks-rs
//! This library implements the base field of the BLS12_377 curve generated in [\[BCGMMW20, Zexe”\]](https://eprint.iacr.org/2018/962).
//! This library implements the base field of the BLS12_377 curve generated in [[BCGMMW20, "Zexe"]](https://eprint.iacr.org/2018/962).
//! The name denotes that it is a Barreto--Lynn--Scott curve of embedding degree
//! 12, defined over a 377-bit (prime) field. The main feature of this curve is
//! that both the scalar field and the base field are highly 2-adic.
Expand Down
2 changes: 1 addition & 1 deletion src/fields/bls12_377Fr.nr
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//! Blurb sourced from https://github.com/arkworks-rs
//! This library implements the scalar field of the BLS12_377 curve generated in [\[BCGMMW20, Zexe”\]](https://eprint.iacr.org/2018/962).
//! This library implements the scalar field of the BLS12_377 curve generated in [BCGMMW20, "Zexe"](https://eprint.iacr.org/2018/962).
//! The name denotes that it is a Barreto--Lynn--Scott curve of embedding degree
//! 12, defined over a 377-bit (prime) field. The main feature of this curve is
//! that both the scalar field and the base field are highly 2-adic.
Expand Down
3 changes: 1 addition & 2 deletions src/utils/u60_representation.nr
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ use crate::utils::msb::get_msb64;
* It is helpful to use u60 types when evaluating addition operations that can overflow the field modulus,
* as well as when performing bit shifts.
*/
pub(crate) struct U60Repr<let N: u32, let NumSegments: u32>
{
struct U60Repr<let N: u32, let NumSegments: u32> {
limbs: [u64; N * NumSegments]
}

Expand Down

0 comments on commit a516ad8

Please sign in to comment.