#include "test_helpers.h"
#include "fmpz_mpoly.h"
TEST_FUNCTION_START(fmpz_mpoly_div_monagan_pearce, state)
{
slong i, j, tmul = 10;
{
fmpz_mpoly_t f, g, p, q;
fmpz_mpoly_ctx_t ctx;
const char * vars[] = {"x", "y", "z", "t", "u"};
fmpz_mpoly_ctx_init(ctx, 5, ORD_LEX);
fmpz_mpoly_init(f, ctx);
fmpz_mpoly_init(g, ctx);
fmpz_mpoly_init(p, ctx);
fmpz_mpoly_init(q, ctx);
fmpz_mpoly_set_str_pretty(f, "(1+x+y+2*z^2+3*t^3+5*u^5)^6", vars, ctx);
fmpz_mpoly_set_str_pretty(g, "(1+u+t+2*z^2+3*y^3+5*x^5)^6", vars, ctx);
fmpz_mpoly_mul(p, f, g, ctx);
fmpz_mpoly_assert_canonical(p, ctx);
fmpz_mpoly_div_monagan_pearce(q, p, f, ctx);
fmpz_mpoly_assert_canonical(q, ctx);
if (!fmpz_mpoly_equal(q, g, ctx))
{
printf("FAIL\n");
flint_printf("Check example1\n");
fflush(stdout);
flint_abort();
}
fmpz_mpoly_clear(f, ctx);
fmpz_mpoly_clear(g, ctx);
fmpz_mpoly_clear(p, ctx);
fmpz_mpoly_clear(q, ctx);
fmpz_mpoly_ctx_clear(ctx);
}
for (i = 0; i < 10 * tmul * flint_test_multiplier(); i++)
{
fmpz_mpoly_ctx_t ctx;
fmpz_mpoly_t f, g, h, k;
slong len, len1, len2;
flint_bitcnt_t exp_bits, exp_bits1, exp_bits2;
flint_bitcnt_t coeff_bits;
fmpz_mpoly_ctx_init_rand(ctx, state, 10);
fmpz_mpoly_init(f, ctx);
fmpz_mpoly_init(g, ctx);
fmpz_mpoly_init(h, ctx);
fmpz_mpoly_init(k, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100) + 1;
exp_bits = n_randint(state, 200) + 1;
exp_bits1 = n_randint(state, 200) + 1;
exp_bits2 = n_randint(state, 200) + 1;
coeff_bits = n_randint(state, 200);
for (j = 0; j < 4; j++)
{
fmpz_mpoly_randtest_bits(f, state, len1, coeff_bits, exp_bits1, ctx);
do {
fmpz_mpoly_randtest_bits(g, state, len2, coeff_bits + 1, exp_bits2, ctx);
} while (g->length == 0);
fmpz_mpoly_randtest_bits(h, state, len, coeff_bits, exp_bits, ctx);
fmpz_mpoly_randtest_bits(k, state, len, coeff_bits, exp_bits, ctx);
fmpz_mpoly_mul(h, f, g, ctx);
fmpz_mpoly_assert_canonical(h, ctx);
fmpz_mpoly_div_monagan_pearce(k, h, g, ctx);
fmpz_mpoly_assert_canonical(k, ctx);
if (!fmpz_mpoly_equal(f, k, ctx))
{
printf("FAIL\n");
flint_printf("Check f*g/g = f\ni = %wd, j = %wd\n", i ,j);
fflush(stdout);
flint_abort();
}
}
fmpz_mpoly_clear(f, ctx);
fmpz_mpoly_clear(g, ctx);
fmpz_mpoly_clear(h, ctx);
fmpz_mpoly_clear(k, ctx);
}
for (i = 0; i < tmul * flint_test_multiplier(); i++)
{
fmpz_mpoly_ctx_t ctx;
fmpz_mpoly_t f, g, h, k, r;
slong len, len1, len2;
ulong max_bound, * exp_bound, * exp_bound1, * exp_bound2;
flint_bitcnt_t coeff_bits;
fmpz * shifts, * strides;
slong n;
fmpz_mpoly_ctx_init_rand(ctx, state, 10);
fmpz_mpoly_init(f, ctx);
fmpz_mpoly_init(g, ctx);
fmpz_mpoly_init(h, ctx);
fmpz_mpoly_init(k, ctx);
fmpz_mpoly_init(r, ctx);
len = n_randint(state, 16);
len1 = n_randint(state, 16);
len2 = n_randint(state, 16) + 1;
coeff_bits = n_randint(state, 70);
n = FLINT_MAX(WORD(1), ctx->minfo->nvars);
max_bound = 1 + 500/n/n;
exp_bound = (ulong *) flint_malloc(ctx->minfo->nvars*sizeof(ulong));
exp_bound1 = (ulong *) flint_malloc(ctx->minfo->nvars*sizeof(ulong));
exp_bound2 = (ulong *) flint_malloc(ctx->minfo->nvars*sizeof(ulong));
shifts = (fmpz *) flint_malloc(ctx->minfo->nvars*sizeof(fmpz));
strides = (fmpz *) flint_malloc(ctx->minfo->nvars*sizeof(fmpz));
for (j = 0; j < ctx->minfo->nvars; j++)
{
exp_bound[j] = UWORD(1) << (FLINT_BITS - 1);
exp_bound1[j] = n_randint(state, max_bound) + 1;
exp_bound2[j] = n_randint(state, max_bound) + 1;
fmpz_init(shifts + j);
fmpz_init(strides + j);
fmpz_randtest_unsigned(shifts + j, state, 100);
fmpz_randtest_unsigned(strides + j, state, 100);
fmpz_add_ui(strides + j, strides + j, 1);
}
for (j = 0; j < 4; j++)
{
fmpz_mpoly_randtest_bounds(f, state, len1, coeff_bits, exp_bound1, ctx);
do {
fmpz_mpoly_randtest_bounds(g, state, len2, coeff_bits + 1, exp_bound2, ctx);
} while (g->length == 0);
fmpz_mpoly_randtest_bounds(h, state, len, coeff_bits, exp_bound, ctx);
fmpz_mpoly_randtest_bounds(k, state, len, coeff_bits, exp_bound, ctx);
fmpz_mpoly_inflate(f, f, shifts, strides, ctx);
fmpz_mpoly_inflate(g, g, shifts, strides, ctx);
fmpz_mpoly_divrem_monagan_pearce(h, r, f, g, ctx);
fmpz_mpoly_assert_canonical(h, ctx);
fmpz_mpoly_div_monagan_pearce(k, f, g, ctx);
fmpz_mpoly_assert_canonical(k, ctx);
if (!fmpz_mpoly_equal(k, h, ctx))
{
printf("FAIL\n");
flint_printf("Check output agrees with divrem\n"
"i = %wd, j = %wd\n", i ,j);
fflush(stdout);
flint_abort();
}
}
for (j = 0; j < ctx->minfo->nvars; j++)
{
fmpz_clear(shifts + j);
fmpz_clear(strides + j);
}
flint_free(shifts);
flint_free(strides);
flint_free(exp_bound);
flint_free(exp_bound1);
flint_free(exp_bound2);
fmpz_mpoly_clear(f, ctx);
fmpz_mpoly_clear(g, ctx);
fmpz_mpoly_clear(h, ctx);
fmpz_mpoly_clear(k, ctx);
fmpz_mpoly_clear(r, ctx);
}
for (i = 0; i < tmul * flint_test_multiplier(); i++)
{
fmpz_mpoly_ctx_t ctx;
fmpz_mpoly_t f, g, h, r;
slong len, len1, len2;
ulong max_bound, * exp_bound, * exp_bound1, * exp_bound2;
flint_bitcnt_t coeff_bits;
fmpz * shifts, * strides;
slong n;
fmpz_mpoly_ctx_init_rand(ctx, state, 10);
fmpz_mpoly_init(f, ctx);
fmpz_mpoly_init(g, ctx);
fmpz_mpoly_init(h, ctx);
fmpz_mpoly_init(r, ctx);
len = n_randint(state, 16);
len1 = n_randint(state, 16);
len2 = n_randint(state, 16) + 1;
coeff_bits = n_randint(state, 70);
n = FLINT_MAX(WORD(1), ctx->minfo->nvars);
max_bound = 1 + 500/n/n;
exp_bound = (ulong *) flint_malloc(ctx->minfo->nvars*sizeof(ulong));
exp_bound1 = (ulong *) flint_malloc(ctx->minfo->nvars*sizeof(ulong));
exp_bound2 = (ulong *) flint_malloc(ctx->minfo->nvars*sizeof(ulong));
shifts = (fmpz *) flint_malloc(ctx->minfo->nvars*sizeof(fmpz));
strides = (fmpz *) flint_malloc(ctx->minfo->nvars*sizeof(fmpz));
for (j = 0; j < ctx->minfo->nvars; j++)
{
exp_bound[j] = UWORD(1) << (FLINT_BITS - 1);
exp_bound1[j] = n_randint(state, max_bound) + 1;
exp_bound2[j] = n_randint(state, max_bound) + 1;
fmpz_init(shifts + j);
fmpz_init(strides + j);
fmpz_randtest_unsigned(shifts + j, state, 100);
fmpz_randtest_unsigned(strides + j, state, 100);
fmpz_add_ui(strides + j, strides + j, 1);
}
for (j = 0; j < 4; j++)
{
fmpz_mpoly_randtest_bounds(f, state, len1, coeff_bits, exp_bound1, ctx);
do {
fmpz_mpoly_randtest_bounds(g, state, len2, coeff_bits + 1, exp_bound2, ctx);
} while (g->length == 0);
fmpz_mpoly_randtest_bounds(h, state, len, coeff_bits, exp_bound, ctx);
fmpz_mpoly_inflate(f, f, shifts, strides, ctx);
fmpz_mpoly_inflate(g, g, shifts, strides, ctx);
fmpz_mpoly_divrem_monagan_pearce(h, r, f, g, ctx);
fmpz_mpoly_assert_canonical(h, ctx);
fmpz_mpoly_div_monagan_pearce(f, f, g, ctx);
fmpz_mpoly_assert_canonical(f, ctx);
if (!fmpz_mpoly_equal(f, h, ctx))
{
printf("FAIL\n");
flint_printf("Check aliasing of quotient with first argument\n"
"i = %wd, j = %wd\n", i ,j);
fflush(stdout);
flint_abort();
}
}
for (j = 0; j < ctx->minfo->nvars; j++)
{
fmpz_clear(shifts + j);
fmpz_clear(strides + j);
}
flint_free(shifts);
flint_free(strides);
flint_free(exp_bound);
flint_free(exp_bound1);
flint_free(exp_bound2);
fmpz_mpoly_clear(f, ctx);
fmpz_mpoly_clear(g, ctx);
fmpz_mpoly_clear(h, ctx);
fmpz_mpoly_clear(r, ctx);
}
for (i = 0; i < tmul * flint_test_multiplier(); i++)
{
fmpz_mpoly_ctx_t ctx;
fmpz_mpoly_t f, g, h, r;
slong len, len1, len2;
ulong max_bound, * exp_bound, * exp_bound1, * exp_bound2;
flint_bitcnt_t coeff_bits;
fmpz * shifts, * strides;
slong n;
fmpz_mpoly_ctx_init_rand(ctx, state, 10);
fmpz_mpoly_init(f, ctx);
fmpz_mpoly_init(g, ctx);
fmpz_mpoly_init(h, ctx);
fmpz_mpoly_init(r, ctx);
len = n_randint(state, 16);
len1 = n_randint(state, 16);
len2 = n_randint(state, 16) + 1;
coeff_bits = n_randint(state, 70);
n = FLINT_MAX(WORD(1), ctx->minfo->nvars);
max_bound = 1 + 500/n/n;
exp_bound = (ulong *) flint_malloc(ctx->minfo->nvars*sizeof(ulong));
exp_bound1 = (ulong *) flint_malloc(ctx->minfo->nvars*sizeof(ulong));
exp_bound2 = (ulong *) flint_malloc(ctx->minfo->nvars*sizeof(ulong));
shifts = (fmpz *) flint_malloc(ctx->minfo->nvars*sizeof(fmpz));
strides = (fmpz *) flint_malloc(ctx->minfo->nvars*sizeof(fmpz));
for (j = 0; j < ctx->minfo->nvars; j++)
{
exp_bound[j] = UWORD(1) << (FLINT_BITS - 1);
exp_bound1[j] = n_randint(state, max_bound) + 1;
exp_bound2[j] = n_randint(state, max_bound) + 1;
fmpz_init(shifts + j);
fmpz_init(strides + j);
fmpz_randtest_unsigned(shifts + j, state, 100);
fmpz_randtest_unsigned(strides + j, state, 100);
fmpz_add_ui(strides + j, strides + j, 1);
}
for (j = 0; j < 4; j++)
{
fmpz_mpoly_randtest_bounds(f, state, len1, coeff_bits, exp_bound1, ctx);
do {
fmpz_mpoly_randtest_bounds(g, state, len2, coeff_bits + 1, exp_bound2, ctx);
} while (g->length == 0);
fmpz_mpoly_randtest_bounds(h, state, len, coeff_bits, exp_bound, ctx);
fmpz_mpoly_inflate(f, f, shifts, strides, ctx);
fmpz_mpoly_inflate(g, g, shifts, strides, ctx);
fmpz_mpoly_divrem_monagan_pearce(h, r, f, g, ctx);
fmpz_mpoly_assert_canonical(h, ctx);
fmpz_mpoly_div_monagan_pearce(g, f, g, ctx);
fmpz_mpoly_assert_canonical(g, ctx);
if (!fmpz_mpoly_equal(g, h, ctx))
{
printf("FAIL\n");
flint_printf("Check aliasing of quotient with second argument\n"
"i = %wd, j = %wd\n", i ,j);
fflush(stdout);
flint_abort();
}
}
for (j = 0; j < ctx->minfo->nvars; j++)
{
fmpz_clear(shifts + j);
fmpz_clear(strides + j);
}
flint_free(shifts);
flint_free(strides);
flint_free(exp_bound);
flint_free(exp_bound1);
flint_free(exp_bound2);
fmpz_mpoly_clear(f, ctx);
fmpz_mpoly_clear(g, ctx);
fmpz_mpoly_clear(h, ctx);
fmpz_mpoly_clear(r, ctx);
}
TEST_FUNCTION_END(state);
}