summaryrefslogtreecommitdiff
path: root/math/linearSieve.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'math/linearSieve.cpp')
-rw-r--r--math/linearSieve.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/linearSieve.cpp b/math/linearSieve.cpp
index e1fa7ff..b029b9a 100644
--- a/math/linearSieve.cpp
+++ b/math/linearSieve.cpp
@@ -1,4 +1,4 @@
-constexpr ll N = 10000000;
+constexpr ll N = 10'000'000;
ll smallest[N], power[N], sieved[N];
vector<ll> primes;