We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 667c3fa commit 6f6fdbcCopy full SHA for 6f6fdbc
README.md
@@ -55,8 +55,8 @@ to store in the binary and the size of the sieve used during evaluation. The sie
55
of the square root of the largest encountered value:
56
```rust
57
// ceil(sqrt(5_000_000_063)) = 70_711
58
-const PRIMES_GEQ: const_primes::Result<3> = primes_geq::<3, 70_711>(5_000_000_031);
59
-assert_eq!(PRIMES_GEQ?, [5_000_000_039, 5_000_000_059, 5_000_000_063]);
+const PRIMES_GEQ: Result<[u64; 3], const_primes::Error> = primes_geq::<3, 70_711>(5_000_000_031);
+assert_eq!(PRIMES_GEQ, Ok([5_000_000_039, 5_000_000_059, 5_000_000_063]));
60
```
61
62
const N: usize = 70711;
0 commit comments