-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
251abd3
commit f09f617
Showing
18 changed files
with
757 additions
and
811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 4 additions & 7 deletions
11
...eve/include/primesieve/nthPrimeApprox.hpp → ...rimesieve/include/primesieve/RiemannR.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,19 @@ | ||
/// | ||
/// @file nthPrimeApprox.hpp | ||
/// @file RiemannR.hpp | ||
/// | ||
/// Copyright (C) 2024 Kim Walisch, <[email protected]> | ||
/// | ||
/// This file is distributed under the BSD License. See the COPYING | ||
/// file in the top level directory. | ||
/// | ||
|
||
#include <primesieve/Vector.hpp> | ||
#include <stdint.h> | ||
|
||
namespace primesieve { | ||
|
||
Vector<int32_t> generate_moebius(int64_t max); | ||
uint64_t Li(uint64_t x); | ||
uint64_t Li_inverse(uint64_t x); | ||
uint64_t Ri(uint64_t x); | ||
uint64_t Ri_inverse(uint64_t x); | ||
long double RiemannR(long double x); | ||
long double RiemannR_inverse(long double x); | ||
|
||
uint64_t primePiApprox(uint64_t x); | ||
uint64_t nthPrimeApprox(uint64_t n); | ||
|
||
|
Oops, something went wrong.