pqc/external/flint-2.4.3/nmod_poly_factor/test/t-is_irreducible_ddf.c
2014-05-24 23:16:06 +02:00

116 lines
3.2 KiB
C

/*=============================================================================
This file is part of FLINT.
FLINT is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
FLINT is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with FLINT; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
=============================================================================*/
/******************************************************************************
Copyright (C) 2011 Fredrik Johansson
Copyright (C) 2013 Martin Lee
******************************************************************************/
#undef ulong
#define ulong ulongxx/* interferes with system includes */
#include <stdlib.h>
#include <stdio.h>
#undef ulong
#include <gmp.h>
#define ulong mp_limb_t
#include "flint.h"
#include "nmod_vec.h"
#include "nmod_poly.h"
#include "ulong_extras.h"
int
main(void)
{
int iter;
FLINT_TEST_INIT(state);
flint_printf("is_irreducible_ddf....");
fflush(stdout);
for (iter = 0; iter < 200 * flint_test_multiplier(); iter++)
{
nmod_poly_t poly, poly2, poly3;
mp_limb_t modulus;
slong length, length2;
int result = 1;
modulus = n_randtest_prime(state, 0);
nmod_poly_init(poly, modulus);
nmod_poly_init(poly2, modulus);
nmod_poly_init(poly3, modulus);
length = n_randint(state, 10) + 2;
do
{
nmod_poly_randtest(poly, state, length);
if(!nmod_poly_is_zero(poly))
nmod_poly_make_monic(poly, poly);
}
while ((poly->length < 2));
result &= (nmod_poly_is_irreducible_rabin (poly) == nmod_poly_is_irreducible_ddf (poly));
if (!result)
{
flint_printf("FAIL:\n");
flint_printf("result of is_irreducible and is_irreducible_ddf does not coincide\n");
flint_printf("poly = "), nmod_poly_print(poly), flint_printf("\n");
abort();
}
length2 = n_randint(state, 10) + 2;
do
{
nmod_poly_randtest(poly2, state, length2);
if(!nmod_poly_is_zero(poly2))
nmod_poly_make_monic(poly2, poly2);
}
while ((!nmod_poly_is_irreducible_rabin(poly2)) || (poly2->length < 2));
nmod_poly_mul(poly3, poly, poly2);
result &= !nmod_poly_is_irreducible_ddf(poly3);
if (!result)
{
flint_printf("Error: reducible polynomial declared irreducible!\n");
nmod_poly_print(poly3); flint_printf("\n");
abort();
}
nmod_poly_clear(poly);
nmod_poly_clear(poly2);
nmod_poly_clear(poly3);
}
FLINT_TEST_CLEANUP(state);
flint_printf("PASS\n");
return 0;
}