primes: put an additional comment

This commit is contained in:
Maxim Konovalov 2025-05-20 04:28:14 +00:00
parent 6d10d63113
commit 64c8e9fc32

View file

@ -241,6 +241,10 @@ primes(ubig start, ubig stop)
if (p <= pr_limit) {
return;
}
/*
* the next odd number after the largest prime in the
* precomputed list
*/
start = *pr_limit+2;
}