Skip to content

Commit

Permalink
MVP
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeyBF committed Nov 27, 2023
1 parent 294ed62 commit ad02235
Show file tree
Hide file tree
Showing 39 changed files with 988 additions and 795 deletions.
4 changes: 2 additions & 2 deletions ext/crates/algebra/benches/milnor.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use algebra::milnor_algebra::{PPartAllocation, PPartEntry, PPartMultiplier};
use bencher::{benchmark_group, benchmark_main, Bencher};
use fp::prime::ValidPrime;
use fp::prime::{Prime, ValidPrime};

fn ppart_inner<const MOD4: bool>(
bench: &mut Bencher,
Expand All @@ -24,7 +24,7 @@ fn ppart_inner<const MOD4: bool>(
if MOD4 {
assert!(c < 4);
} else {
assert!(c < *p);
assert!(c < p.as_u32());
}
}
});
Expand Down
Loading

0 comments on commit ad02235

Please sign in to comment.