summaryrefslogtreecommitdiff
path: root/math/primeSieve.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'math/primeSieve.cpp')
-rw-r--r--math/primeSieve.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/math/primeSieve.cpp b/math/primeSieve.cpp
index 4732d0a..5e8d6f8 100644
--- a/math/primeSieve.cpp
+++ b/math/primeSieve.cpp
@@ -1,4 +1,4 @@
-// Sieb des Eratosthenes. Laufzeit: O(n * log log n)
+// Laufzeit: O(n * log log n)
#define N 100000001 // Bis 10^8 in unter 64MB Speicher.
bitset<N / 2> isPrime;