summaryrefslogtreecommitdiff
path: root/math/piLehmer.cpp
diff options
context:
space:
mode:
authormzuenni <michi.zuendorf@gmail.com>2023-01-10 11:40:09 +0100
committermzuenni <michi.zuendorf@gmail.com>2023-01-10 11:40:09 +0100
commitfd1f2b36e95c03625297b7b8cba3b1a04a0cc0ed (patch)
treeb143619750b90fbfa45a98be9ea56904d1a7129d /math/piLehmer.cpp
parent8faa84ca282d51e9ce4fef535e68325adabcebad (diff)
change whitespaces
Diffstat (limited to 'math/piLehmer.cpp')
-rw-r--r--math/piLehmer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/piLehmer.cpp b/math/piLehmer.cpp
index 37eff6b..4d1780f 100644
--- a/math/piLehmer.cpp
+++ b/math/piLehmer.cpp
@@ -16,7 +16,7 @@ void init() {
memoB[i] = primes[i - 1] * memoB[i - 1];
for(ll j = 1; j <= cacheA; j++) {
memoA[j][i] = memoA[j][i - 1] - memoA[j /
- primes[i - 1]][i - 1];
+ primes[i - 1]][i - 1];
}}}
ll phi(ll n, ll k) {