Skip to content

Commit

Permalink
Update comment
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Feb 18, 2024
1 parent 42a90d1 commit 5cd9da4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/RiemannR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
/// function which is a very accurate approximation of PrimePi(x).
/// The accuracy of this implementation depends on width of the
/// long double type. If the long double type has 80 bits (e.g.
/// Linux) then RiemannR(x) is accurate up to 10^19, if the long
/// Linux) then RiemannR(x) is accurate up to 1e15, if the long
/// double type has 64 bits (e.g. MSVC & macOS) then RiemannR(x)
/// is accurate up to 10^15. This implementation could be made
/// is accurate up to 1e12. This implementation could be made
/// more accurate using the non standard __float128 type, but for
/// primesieve's purpose speed is more important than accuracy.
///
Expand Down

0 comments on commit 5cd9da4

Please sign in to comment.