We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e990326 commit 9768e5aCopy full SHA for 9768e5a
src/check.rs
@@ -60,7 +60,6 @@ pub const fn is_prime(n: u64) -> bool {
60
(u64::MAX, &[2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37]),
61
];
62
63
- // Find the smallest basis that is large enough.
64
let mut i = 0;
65
while i < NUM_BASES && WITNESSES[i].0 < n {
66
i += 1;
0 commit comments