#include "test_helpers.h"
#include "fq_nmod_poly.h"
#include "n_poly.h"
TEST_FUNCTION_START(n_fq_poly_divrem, state)
{
slong i, j;
for (i = 0; i < 200 * flint_test_multiplier(); i++)
{
fq_nmod_ctx_t ctx;
n_poly_t a, b, c, d, e, f, q, r;
fq_nmod_poly_t A, B, Q, R;
fq_nmod_ctx_init_randtest(ctx, state, 3);
n_poly_init(a);
n_poly_init(b);
n_poly_init(c);
n_poly_init(d);
n_poly_init(e);
n_poly_init(f);
n_poly_init(q);
n_poly_init(r);
fq_nmod_poly_init(A, ctx);
fq_nmod_poly_init(B, ctx);
fq_nmod_poly_init(Q, ctx);
fq_nmod_poly_init(R, ctx);
for (j = 0; j < 10; j++)
{
n_fq_poly_randtest(a, state, n_randint(state, 20), ctx);
n_fq_poly_randtest(b, state, n_randint(state, 15), ctx);
n_fq_poly_randtest(c, state, n_randint(state, 20), ctx);
n_fq_poly_randtest(d, state, n_randint(state, 20), ctx);
n_fq_poly_randtest(e, state, n_randint(state, 20), ctx);
n_fq_poly_randtest(f, state, n_randint(state, 20), ctx);
if (n_poly_is_zero(b))
n_fq_poly_one(b, ctx);
n_fq_poly_get_fq_nmod_poly(A, a, ctx);
n_fq_poly_get_fq_nmod_poly(B, b, ctx);
fq_nmod_poly_divrem(Q, R, A, B, ctx);
n_fq_poly_set_fq_nmod_poly(q, Q, ctx);
n_fq_poly_set_fq_nmod_poly(r, R, ctx);
n_fq_poly_divrem(c, d, a, b, ctx);
n_fq_poly_divrem(c, d, a, b, ctx);
if (!n_fq_poly_equal(c, q, ctx) ||
!n_fq_poly_equal(d, r, ctx))
{
flint_printf("FAIL\n i = %wd, j = %wd\n", i, j);
fflush(stdout);
flint_abort();
}
}
n_poly_clear(a);
n_poly_clear(b);
n_poly_clear(c);
n_poly_clear(d);
n_poly_clear(e);
n_poly_clear(f);
n_poly_clear(q);
n_poly_clear(r);
fq_nmod_poly_clear(A, ctx);
fq_nmod_poly_clear(B, ctx);
fq_nmod_poly_clear(Q, ctx);
fq_nmod_poly_clear(R, ctx);
fq_nmod_ctx_clear(ctx);
}
TEST_FUNCTION_END(state);
}