flint-sys 0.9.0

Bindings to the FLINT C library
Documentation
/*
    Copyright (C) 2019 Tommy Hofmann

    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 3 of the License, or
    (at your option) any later version.  See <https://www.gnu.org/licenses/>.
*/

#include "test_helpers.h"
#include "ulong_extras.h"
#include "nmod_poly.h"
#include "fmpq_poly.h"

TEST_FUNCTION_START(fmpq_poly_get_nmod_poly, state)
{
    int i;

    for (i = 0; i < 1000 * flint_test_multiplier(); i++)
    {
        fmpq_poly_t A;
        nmod_poly_t M, M2;
        slong length;
        ulong mod;

        length = n_randint(state, 50);

        mod = n_randtest_prime(state, 0);

        nmod_poly_init(M, mod);
        nmod_poly_init(M2, mod);
        fmpq_poly_init(A);

        nmod_poly_randtest(M, state, length);

        fmpq_poly_set_nmod_poly(A, M);

        fmpq_poly_scalar_mul_ui(A, A, UWORD(2));
        nmod_poly_add(M, M, M);
        fmpq_poly_get_nmod_poly(M2, A);

        if (!nmod_poly_equal(M, M2))
        {
            flint_printf("FAIL!\n");
            fflush(stdout);
            flint_abort();
        }

        fmpq_poly_clear(A);
        nmod_poly_clear(M);
        nmod_poly_clear(M2);
    }

    for (i = 0; i < 1000 * flint_test_multiplier(); i++)
    {
        fmpq_poly_t A;
        nmod_poly_t M, M2;
        slong length;
        ulong mod;
        ulong lead;

        length = n_randint(state, 50);

        while (length == WORD(0))
          length = n_randint(state, 50);

        mod = n_randtest_prime(state, 0);

        nmod_poly_init(M, mod);
        nmod_poly_init(M2, mod);
        fmpq_poly_init(A);

        nmod_poly_randtest(M, state, length);

        while (nmod_poly_is_zero(M))
          nmod_poly_randtest(M, state, length);

        lead = nmod_poly_get_coeff_ui(M, M->length - 1);

        fmpq_poly_set_nmod_poly(A, M);

        nmod_poly_make_monic(M, M);
        fmpq_poly_scalar_div_ui(A, A, lead);
        fmpq_poly_get_nmod_poly(M2, A);

        if (!nmod_poly_equal(M, M2))
        {
            flint_printf("FAIL!\n");
            fflush(stdout);
            flint_abort();
        }

        fmpq_poly_clear(A);
        nmod_poly_clear(M);
        nmod_poly_clear(M2);
    }

    TEST_FUNCTION_END(state);
}