/*
Copyright (C) 2008 Peter Shrimpton
Copyright (C) 2009 William Hart
Copyright (C) 2015 Kushagra Singh
This file is part of FLINT.
FLINT is free software: you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version. See .
*/
#include
#define ulong ulongxx /* interferes with system includes */
#include
#include
#undef ulong
#define ulong mp_limb_t
#include "flint.h"
#include "ulong_extras.h"
int
n_is_prime_pocklington(mp_limb_t n, ulong iterations)
{
int i, j, pass;
mp_limb_t n1, cofactor, b, c, ninv, limit, F, Fsq, det, rootn, val, c1, c2, upper_limit;
n_factor_t factors;
c = 0;
#if FLINT64
upper_limit = 2642246; /* 2642246^3 is approximately 2^64 */
#else
upper_limit = 1626; /* 1626^3 is approximately 2^32 */
#endif
if (n == 1)
return 0;
if (n % 2 == 0)
return (n == UWORD(2));
rootn = n_sqrt(n); /* floor(sqrt(n)) */
if (n == rootn*rootn)
return 0;
n1 = n - 1;
n_factor_init(&factors);
limit = (mp_limb_t) pow((double)n1, 1.0/3);
val = n_pow(limit, 3);
while (val < n1 && limit < upper_limit) /* ensuring that limit >= n1^(1/3) */
{
limit++;
val = n_pow(limit, 3);
}
cofactor = n_factor_partial(&factors, n1, limit, 1);
if (cofactor != 1) /* check that cofactor is coprime to factors found */
{
for (i = 0; i < factors.num; i++)
{
if (factors.p[i] > FLINT_FACTOR_TRIAL_PRIMES_PRIME)
{
while (cofactor >= factors.p[i] && (cofactor % factors.p[i]) == 0)
{
factors.exp[i]++;
cofactor /= factors.p[i];
}
}
}
}
F = n1/cofactor; /* n1 = F*cofactor */
Fsq = F*F;
if (F <= rootn) /* cube root method applicable only if n^1/3 <= F < n^1/2 */
{
c2 = n1/(Fsq); /* expressing n as c2*F^2 + c1*F + 1 */
c1 = (n1 - c2*Fsq )/F;
det = c1*c1 - 4*c2;
if (n_is_square(det)) /* BSL's test for (n^1/3 <= F < n^1/2) */
return 0;
}
ninv = n_preinvert_limb(n);
c = 1;
for (i = factors.num - 1; i >= 0; i--)
{
mp_limb_t exp = n1 / factors.p[i];
pass = 0;
for (j = 2; j < iterations && pass == 0; j++)
{
b = n_powmod2_preinv(j, exp, n, ninv);
if (n_powmod2_ui_preinv(b, factors.p[i], n, ninv) != UWORD(1))
return 0;
b = n_submod(b, UWORD(1), n);
if (b != UWORD(0))
{
c = n_mulmod2_preinv(c, b, n, ninv);
pass = 1;
}
if (c == 0)
return 0;
}
if (j == iterations)
return -1;
}
return (n_gcd(n, c) == UWORD(1));
}