/*
Copyright (C) 2012 William Hart
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
#include
#include
#include
#include "flint.h"
#include "ulong_extras.h"
#include "fmpz.h"
int
main(void)
{
int i, result;
FLINT_TEST_INIT(state);
flint_printf("is_prime_pocklington....");
fflush(stdout);
for (i = 0; i < 30 * flint_test_multiplier(); i++)
{
fmpz_t p, F, R;
mp_ptr pm1;
slong num_pm1;
ulong limit;
double logd;
fmpz_init(p);
fmpz_init(F);
fmpz_init(R);
do {
fmpz_randbits(p, state, n_randint(state, 330) + 2);
fmpz_abs(p, p);
} while (!fmpz_is_probabprime(p) || fmpz_cmp_ui(p, 2) == 0);
logd = log(fmpz_get_d(p));
limit = (ulong) (logd*logd*logd/10.0) + 2;
pm1 = _nmod_vec_init((ulong) logd + 2);
_fmpz_nm1_trial_factors(p, pm1, &num_pm1, limit);
result = fmpz_is_prime_pocklington(F, R, p, pm1, num_pm1);
if (!result)
{
flint_printf("FAIL:\n");
fmpz_print(p); printf("\n");
abort();
}
_nmod_vec_clear(pm1);
fmpz_clear(p);
fmpz_clear(F);
fmpz_clear(R);
}
FLINT_TEST_CLEANUP(state);
flint_printf("PASS\n");
return 0;
}