mirror of
https://github.com/vale981/arb
synced 2025-03-05 09:21:38 -05:00
thetanull missed some primepowers
This commit is contained in:
parent
d58c1687b7
commit
c5514c13ce
1 changed files with 2 additions and 2 deletions
|
@ -184,12 +184,12 @@ int main(int argc, char *argv[])
|
|||
slong it = 0;
|
||||
/* look for vanishing theta values for prime power moduli */
|
||||
n_primes_init(iter);
|
||||
n_primes_jump_after(iter, qmin - 1);
|
||||
|
||||
while ((p = n_primes_next(iter)) < qmax)
|
||||
{
|
||||
|
||||
for (q = p; q < qmax; q *= p)
|
||||
for (q = p; q < qmin; q*= p);
|
||||
for (; q < qmax; q *= p)
|
||||
check_q(q, odd, prec, digits, onlymod);
|
||||
|
||||
if (step && (it++ % step == 0))
|
||||
|
|
Loading…
Add table
Reference in a new issue