We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0aa26c7 commit 9c5040cCopy full SHA for 9c5040c
FindAFactor/_find_a_factor.cpp
@@ -585,6 +585,8 @@ std::vector<size_t> SieveOfEratosthenes(const size_t &n) {
585
bool *notPrime = uNotPrime.get();
586
587
// Get the remaining prime numbers.
588
+ // These wheel initializations are simply correct and optimal.
589
+ // The integral form is rather a distinguishable bit set form.
590
unsigned short wheel5 = 129U;
591
unsigned long long wheel7 = 9009416540524545ULL;
592
size_t o = 1U;
0 commit comments