Skip to content

Commit

Permalink
RiemannR_inverse(10^15) fails on arm64 Alpine Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
kimwalisch committed Mar 9, 2024
1 parent bc30849 commit 358751f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions test/Riemann_R.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
using std::size_t;
using namespace primesieve;

Array<uint64_t, 15> RiemannR_table =
Array<uint64_t, 14> RiemannR_table =
{
4, // RiemannR(10^1)
25, // RiemannR(10^2)
Expand All @@ -35,8 +35,7 @@ Array<uint64_t, 15> RiemannR_table =
4118052494ll, // RiemannR(10^11)
37607910542ll, // RiemannR(10^12)
346065531065ll, // RiemannR(10^13)
3204941731601ll, // RiemannR(10^14)
29844570495886ll // RiemannR(10^15)
3204941731601ll // RiemannR(10^14)
};

void check(bool OK)
Expand Down

0 comments on commit 358751f

Please sign in to comment.