#include "test_helpers.h"
#include "fmpz_mod_mpoly.h"
TEST_FUNCTION_START(fmpz_mod_mpoly_divides_dense, state)
{
slong i, j;
int result, ret;
for (i = 0; i < 50 * flint_test_multiplier(); i++)
{
fmpz_mod_mpoly_ctx_t ctx;
fmpz_mod_mpoly_t f, g, h, k;
slong len, len1, len2;
ulong max_bound, * exp_bound, * exp_bound1, * exp_bound2;
slong n;
fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 6, 200);
fmpz_mod_mpoly_init(f, ctx);
fmpz_mod_mpoly_init(g, ctx);
fmpz_mod_mpoly_init(h, ctx);
fmpz_mod_mpoly_init(k, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
n = FLINT_MAX(WORD(1), ctx->minfo->nvars);
max_bound = 1 + 100/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));
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;
}
for (j = 0; j < 4; j++)
{
fmpz_mod_mpoly_randtest_bounds(f, state, len1, exp_bound1, ctx);
fmpz_mod_mpoly_randtest_bounds(g, state, len2 + 1, exp_bound2, ctx);
if (fmpz_mod_mpoly_is_zero(g, ctx))
fmpz_mod_mpoly_one(g, ctx);
fmpz_mod_mpoly_randtest_bounds(h, state, len, exp_bound, ctx);
fmpz_mod_mpoly_randtest_bounds(k, state, len, exp_bound, ctx);
fmpz_mod_mpoly_mul(h, f, g, ctx);
fmpz_mod_mpoly_assert_canonical(h, ctx);
ret = fmpz_mod_mpoly_divides_dense(k, h, g, ctx);
if (ret == -1)
continue;
fmpz_mod_mpoly_assert_canonical(k, ctx);
result = (ret == 1) && fmpz_mod_mpoly_equal(k, f, ctx);
if (!result)
{
flint_printf("FAIL: Check f*g/g = f\n");
flint_printf("i = %wd, j = %wd\n", i, j);
fflush(stdout);
flint_abort();
}
}
flint_free(exp_bound);
flint_free(exp_bound1);
flint_free(exp_bound2);
fmpz_mod_mpoly_clear(f, ctx);
fmpz_mod_mpoly_clear(g, ctx);
fmpz_mod_mpoly_clear(h, ctx);
fmpz_mod_mpoly_clear(k, ctx);
fmpz_mod_mpoly_ctx_clear(ctx);
}
for (i = 0; i < 50 * flint_test_multiplier(); i++)
{
fmpz_mod_mpoly_ctx_t ctx;
fmpz_mod_mpoly_t f, g, h, k;
slong len, len1, len2;
ulong max_bound, * exp_bound, * exp_bound1, * exp_bound2;
slong n;
fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 6, 200);
fmpz_mod_mpoly_init(f, ctx);
fmpz_mod_mpoly_init(g, ctx);
fmpz_mod_mpoly_init(h, ctx);
fmpz_mod_mpoly_init(k, ctx);
len = n_randint(state, 50);
len1 = n_randint(state, 50);
len2 = n_randint(state, 50);
n = FLINT_MAX(WORD(1), ctx->minfo->nvars);
max_bound = 1 + 20/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));
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;
}
for (j = 0; j < 4; j++)
{
fmpz_mod_mpoly_randtest_bounds(f, state, len1, exp_bound1, ctx);
fmpz_mod_mpoly_randtest_bounds(g, state, len2 + 1, exp_bound2, ctx);
if (fmpz_mod_mpoly_is_zero(g, ctx))
fmpz_mod_mpoly_one(g, ctx);
fmpz_mod_mpoly_randtest_bounds(h, state, len, exp_bound, ctx);
fmpz_mod_mpoly_randtest_bounds(k, state, len, exp_bound, ctx);
ret = fmpz_mod_mpoly_divides_dense(h, f, g, ctx);
if (ret == -1 || ret == 0)
continue;
fmpz_mod_mpoly_assert_canonical(h, ctx);
fmpz_mod_mpoly_mul(k, h, g, ctx);
fmpz_mod_mpoly_assert_canonical(k, ctx);
result = fmpz_mod_mpoly_equal(k, f, ctx);
if (!result)
{
flint_printf("FAIL: Check divisibility of random polys\n");
flint_printf("i = %wd, j = %wd\n", i, j);
fflush(stdout);
flint_abort();
}
}
flint_free(exp_bound);
flint_free(exp_bound1);
flint_free(exp_bound2);
fmpz_mod_mpoly_clear(f, ctx);
fmpz_mod_mpoly_clear(g, ctx);
fmpz_mod_mpoly_clear(h, ctx);
fmpz_mod_mpoly_clear(k, ctx);
fmpz_mod_mpoly_ctx_clear(ctx);
}
for (i = 0; i < 20 * flint_test_multiplier(); i++)
{
fmpz_mod_mpoly_ctx_t ctx;
fmpz_mod_mpoly_t f, g, h, k;
slong len, len1, len2;
ulong max_bound, * exp_bound, * exp_bound1, * exp_bound2;
slong n;
fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 6, 200);
fmpz_mod_mpoly_init(f, ctx);
fmpz_mod_mpoly_init(g, ctx);
fmpz_mod_mpoly_init(h, ctx);
fmpz_mod_mpoly_init(k, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
n = FLINT_MAX(WORD(1), ctx->minfo->nvars);
max_bound = 1 + 100/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));
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;
}
for (j = 0; j < 4; j++)
{
fmpz_mod_mpoly_randtest_bounds(f, state, len1, exp_bound1, ctx);
fmpz_mod_mpoly_randtest_bounds(g, state, len2 + 1, exp_bound2, ctx);
if (fmpz_mod_mpoly_is_zero(g, ctx))
fmpz_mod_mpoly_one(g, ctx);
fmpz_mod_mpoly_randtest_bounds(h, state, len, exp_bound, ctx);
fmpz_mod_mpoly_randtest_bounds(k, state, len, exp_bound, ctx);
fmpz_mod_mpoly_set(h, f, ctx);
fmpz_mod_mpoly_mul(h, h, g, ctx);
fmpz_mod_mpoly_assert_canonical(h, ctx);
ret = fmpz_mod_mpoly_divides_dense(k, h, g, ctx);
if (ret == -1)
continue;
fmpz_mod_mpoly_assert_canonical(k, ctx);
result = (ret == 1) && fmpz_mod_mpoly_equal(k, f, ctx);
if (!result)
{
flint_printf("FAIL: Check f*g/g = f aliasing second argument\n");
flint_printf("i = %wd, j = %wd\n", i, j);
fflush(stdout);
flint_abort();
}
}
flint_free(exp_bound);
flint_free(exp_bound1);
flint_free(exp_bound2);
fmpz_mod_mpoly_clear(f, ctx);
fmpz_mod_mpoly_clear(g, ctx);
fmpz_mod_mpoly_clear(h, ctx);
fmpz_mod_mpoly_clear(k, ctx);
fmpz_mod_mpoly_ctx_clear(ctx);
}
for (i = 0; i < 20 * flint_test_multiplier(); i++)
{
fmpz_mod_mpoly_ctx_t ctx;
fmpz_mod_mpoly_t f, g, h, k;
slong len, len1, len2;
ulong max_bound, * exp_bound, * exp_bound1, * exp_bound2;
slong n;
fmpz_mod_mpoly_ctx_init_rand_bits_prime(ctx, state, 6, 200);
fmpz_mod_mpoly_init(f, ctx);
fmpz_mod_mpoly_init(g, ctx);
fmpz_mod_mpoly_init(h, ctx);
fmpz_mod_mpoly_init(k, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
n = FLINT_MAX(WORD(1), ctx->minfo->nvars);
max_bound = 1 + 100/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));
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;
}
for (j = 0; j < 4; j++)
{
fmpz_mod_mpoly_randtest_bounds(f, state, len1, exp_bound1, ctx);
fmpz_mod_mpoly_randtest_bounds(g, state, len2 + 1, exp_bound2, ctx);
if (fmpz_mod_mpoly_is_zero(g, ctx))
fmpz_mod_mpoly_one(g, ctx);
fmpz_mod_mpoly_randtest_bounds(h, state, len, exp_bound, ctx);
fmpz_mod_mpoly_randtest_bounds(k, state, len, exp_bound, ctx);
fmpz_mod_mpoly_set(h, g, ctx);
fmpz_mod_mpoly_mul(h, f, h, ctx);
fmpz_mod_mpoly_assert_canonical(h, ctx);
ret = fmpz_mod_mpoly_divides_dense(k, h, g, ctx);
if (ret == -1)
continue;
fmpz_mod_mpoly_assert_canonical(k, ctx);
result = (ret == 1) && fmpz_mod_mpoly_equal(k, f, ctx);
if (!result)
{
flint_printf("FAIL: Check f*g/g = f aliasing second argument\n");
flint_printf("i = %wd, j = %wd\n", i, j);
fflush(stdout);
flint_abort();
}
}
flint_free(exp_bound);
flint_free(exp_bound1);
flint_free(exp_bound2);
fmpz_mod_mpoly_clear(f, ctx);
fmpz_mod_mpoly_clear(g, ctx);
fmpz_mod_mpoly_clear(h, ctx);
fmpz_mod_mpoly_clear(k, ctx);
fmpz_mod_mpoly_ctx_clear(ctx);
}
TEST_FUNCTION_END(state);
}