Skip to content

Commit

Permalink
Clarify info in changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
JSorngard committed May 10, 2024
1 parent cb2771a commit 02c024b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ It also shortens and clarifies some function names.

## New features

- Add `primes_geq`, `primes_lt`, and `sieve_geq` functions to work with arbitrary ranges.
- Add `primes_segment!` and `sieve_segment!` macros to simplify usage of the above functions. These macros compute the size of the second const generic that the above functions need. Due to restrictions on const arithmetic this can not be done inside the functions.
- Add `isqrt` function. This can be useful if you wish to compute the size of the second const generic yourself.
- Add `primes_geq`, `primes_lt`, and `sieve_geq` functions to work with arbitrary ranges. They take two const generics, the number of values to return and the size of the sieve used during evaluation.
- Add `primes_segment!` and `sieve_segment!` macros to simplify usage of the above functions. These macros compute the size of the sieve that the above functions need. Due to restrictions on const arithmetic this can not be done inside the functions.
- Add `isqrt` function. This can be useful if you wish to compute the size of the sieve yourself.

## Minor changes

Expand Down

0 comments on commit 02c024b

Please sign in to comment.