Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sagar-a16z committed Jan 6, 2025
1 parent 74648bd commit 9f8c3e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions jolt-core/benches/msm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ where
.collect(),
MsmType::Large(_) => (0..SRS_SIZE)
.into_iter()
.map(|_| {
Fr::random(&mut rng)
})
.map(|_| Fr::random(&mut rng))
.collect(),
};

Expand Down
4 changes: 1 addition & 3 deletions jolt-core/benches/msm_batch.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,7 @@ fn get_scalars(msm_type: MsmType, size: usize) -> Vec<Fr> {
.collect(),
MsmType::Large(_) => (0..size)
.into_iter()
.map(|_| {
Fr::random(&mut rng)
})
.map(|_| Fr::random(&mut rng))
.collect(),
}
}
Expand Down

0 comments on commit 9f8c3e7

Please sign in to comment.