/*
Copyright (C) 2019 Daniel Schultz
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 2.1 of the License, or
(at your option) any later version. See .
*/
#include
#include
#include "fq_nmod_mpoly.h"
int
main(void)
{
int i, j, result;
FLINT_TEST_INIT(state);
flint_printf("add/sub....");
fflush(stdout);
/* Check (f + g) - g = f */
for (i = 0; i < 10 * flint_test_multiplier(); i++)
{
fq_nmod_mpoly_ctx_t ctx;
fq_nmod_mpoly_t f, g, h, k;
slong len, len1, len2;
flint_bitcnt_t exp_bits, exp_bits1, exp_bits2;
fq_nmod_mpoly_ctx_init_rand(ctx, state, 20, FLINT_BITS, 10);
fq_nmod_mpoly_init(f, ctx);
fq_nmod_mpoly_init(g, ctx);
fq_nmod_mpoly_init(h, ctx);
fq_nmod_mpoly_init(k, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
exp_bits = n_randint(state, 200) + 2;
exp_bits1 = n_randint(state, 200) + 2;
exp_bits2 = n_randint(state, 200) + 2;
for (j = 0; j < 1; j++)
{
fq_nmod_mpoly_randtest_bits(f, state, len1, exp_bits1, ctx);
fq_nmod_mpoly_randtest_bits(g, state, len2, exp_bits2, ctx);
fq_nmod_mpoly_randtest_bits(h, state, len, exp_bits, ctx);
fq_nmod_mpoly_randtest_bits(k, state, len, exp_bits, ctx);
fq_nmod_mpoly_add(h, g, f, ctx);
fq_nmod_mpoly_sub(k, h, g, ctx);
result = fq_nmod_mpoly_equal(f, k, ctx);
if (!result)
{
printf("FAIL\n");
flint_printf("Check (f + g) - g = f\ni = %wd, j = %wd\n", i ,j);
flint_abort();
}
}
fq_nmod_mpoly_clear(f, ctx);
fq_nmod_mpoly_clear(g, ctx);
fq_nmod_mpoly_clear(h, ctx);
fq_nmod_mpoly_clear(k, ctx);
fq_nmod_mpoly_ctx_clear(ctx);
}
/* Check f + g = g + f */
for (i = 0; i < 10 * flint_test_multiplier(); i++)
{
fq_nmod_mpoly_ctx_t ctx;
fq_nmod_mpoly_t f, g, h, k;
slong len, len1, len2;
flint_bitcnt_t exp_bits, exp_bits1, exp_bits2;
fq_nmod_mpoly_ctx_init_rand(ctx, state, 20, FLINT_BITS, 10);
fq_nmod_mpoly_init(f, ctx);
fq_nmod_mpoly_init(g, ctx);
fq_nmod_mpoly_init(h, ctx);
fq_nmod_mpoly_init(k, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
exp_bits = n_randint(state, 200) + 2;
exp_bits1 = n_randint(state, 200) + 2;
exp_bits2 = n_randint(state, 200) + 2;
for (j = 0; j < 4; j++)
{
fq_nmod_mpoly_randtest_bits(f, state, len1, exp_bits1, ctx);
fq_nmod_mpoly_randtest_bits(g, state, len2, exp_bits2, ctx);
fq_nmod_mpoly_randtest_bits(h, state, len, exp_bits, ctx);
fq_nmod_mpoly_randtest_bits(k, state, len, exp_bits, ctx);
fq_nmod_mpoly_add(h, f, g, ctx);
fq_nmod_mpoly_add(k, g, f, ctx);
result = fq_nmod_mpoly_equal(h, k, ctx);
if (!result)
{
printf("FAIL\n");
flint_printf("Check f + g = g + f\ni = %wd, j = %wd\n", i ,j);
flint_abort();
}
}
fq_nmod_mpoly_clear(f, ctx);
fq_nmod_mpoly_clear(g, ctx);
fq_nmod_mpoly_clear(h, ctx);
fq_nmod_mpoly_clear(k, ctx);
fq_nmod_mpoly_ctx_clear(ctx);
}
/* Check f - g = -g + f */
for (i = 0; i < 10 * flint_test_multiplier(); i++)
{
fq_nmod_mpoly_ctx_t ctx;
fq_nmod_mpoly_t f, g, h, k;
slong len, len1, len2;
flint_bitcnt_t exp_bits, exp_bits1, exp_bits2;
fq_nmod_mpoly_ctx_init_rand(ctx, state, 20, FLINT_BITS, 10);
fq_nmod_mpoly_init(f, ctx);
fq_nmod_mpoly_init(g, ctx);
fq_nmod_mpoly_init(h, ctx);
fq_nmod_mpoly_init(k, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
exp_bits = n_randint(state, 200) + 2;
exp_bits1 = n_randint(state, 200) + 2;
exp_bits2 = n_randint(state, 200) + 2;
for (j = 0; j < 10; j++)
{
fq_nmod_mpoly_randtest_bits(f, state, len1, exp_bits1, ctx);
fq_nmod_mpoly_randtest_bits(g, state, len2, exp_bits2, ctx);
fq_nmod_mpoly_randtest_bits(h, state, len, exp_bits, ctx);
fq_nmod_mpoly_randtest_bits(k, state, len, exp_bits, ctx);
fq_nmod_mpoly_sub(h, f, g, ctx);
fq_nmod_mpoly_neg(k, g, ctx);
fq_nmod_mpoly_add(k, k, f, ctx);
result = fq_nmod_mpoly_equal(h, k, ctx);
if (!result)
{
printf("FAIL\n");
flint_printf("Check f + g = g + f\ni = %wd, j = %wd\n", i ,j);
flint_abort();
}
}
fq_nmod_mpoly_clear(f, ctx);
fq_nmod_mpoly_clear(g, ctx);
fq_nmod_mpoly_clear(h, ctx);
fq_nmod_mpoly_clear(k, ctx);
fq_nmod_mpoly_ctx_clear(ctx);
}
/* Check f + (g + h) = (f + g) + h */
for (i = 0; i < 10 * flint_test_multiplier(); i++)
{
fq_nmod_mpoly_ctx_t ctx;
fq_nmod_mpoly_t f, g, h, k1, k2;
slong len, len1, len2;
flint_bitcnt_t exp_bits, exp_bits1, exp_bits2;
fq_nmod_mpoly_ctx_init_rand(ctx, state, 20, FLINT_BITS, 10);
fq_nmod_mpoly_init(f, ctx);
fq_nmod_mpoly_init(g, ctx);
fq_nmod_mpoly_init(h, ctx);
fq_nmod_mpoly_init(k1, ctx);
fq_nmod_mpoly_init(k2, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
exp_bits = n_randint(state, 200) + 2;
exp_bits1 = n_randint(state, 200) + 2;
exp_bits2 = n_randint(state, 200) + 2;
for (j = 0; j < 4; j++)
{
fq_nmod_mpoly_randtest_bits(f, state, len1, exp_bits1, ctx);
fq_nmod_mpoly_randtest_bits(g, state, len2, exp_bits2, ctx);
fq_nmod_mpoly_randtest_bits(h, state, len, exp_bits, ctx);
fq_nmod_mpoly_randtest_bits(k1, state, len, exp_bits, ctx);
fq_nmod_mpoly_randtest_bits(k2, state, len, exp_bits, ctx);
fq_nmod_mpoly_add(k1, f, g, ctx);
fq_nmod_mpoly_add(k1, k1, h, ctx);
fq_nmod_mpoly_add(k2, g, h, ctx);
fq_nmod_mpoly_add(k2, k2, f, ctx);
result = fq_nmod_mpoly_equal(k1, k2, ctx);
if (!result)
{
printf("FAIL\n");
flint_printf("Check f + (g + h) = (f + g) + h\ni = %wd, j = %wd\n", i ,j);
flint_abort();
}
}
fq_nmod_mpoly_clear(f, ctx);
fq_nmod_mpoly_clear(g, ctx);
fq_nmod_mpoly_clear(h, ctx);
fq_nmod_mpoly_clear(k1, ctx);
fq_nmod_mpoly_clear(k2, ctx);
fq_nmod_mpoly_ctx_clear(ctx);
}
/* Check f - (g + h) = (f - g) - h */
for (i = 0; i < 10 * flint_test_multiplier(); i++)
{
fq_nmod_mpoly_ctx_t ctx;
fq_nmod_mpoly_t f, g, h, k1, k2;
slong len, len1, len2;
flint_bitcnt_t exp_bits, exp_bits1, exp_bits2;
fq_nmod_mpoly_ctx_init_rand(ctx, state, 20, FLINT_BITS, 10);
fq_nmod_mpoly_init(f, ctx);
fq_nmod_mpoly_init(g, ctx);
fq_nmod_mpoly_init(h, ctx);
fq_nmod_mpoly_init(k1, ctx);
fq_nmod_mpoly_init(k2, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
exp_bits = n_randint(state, 200) + 2;
exp_bits1 = n_randint(state, 200) + 2;
exp_bits2 = n_randint(state, 200) + 2;
for (j = 0; j < 4; j++)
{
fq_nmod_mpoly_randtest_bits(f, state, len1, exp_bits1, ctx);
fq_nmod_mpoly_randtest_bits(g, state, len2, exp_bits2, ctx);
fq_nmod_mpoly_randtest_bits(h, state, len, exp_bits, ctx);
fq_nmod_mpoly_randtest_bits(k1, state, len, exp_bits, ctx);
fq_nmod_mpoly_randtest_bits(k2, state, len, exp_bits, ctx);
fq_nmod_mpoly_add(k1, g, h, ctx);
fq_nmod_mpoly_sub(k1, f, k1, ctx);
fq_nmod_mpoly_sub(k2, f, g, ctx);
fq_nmod_mpoly_sub(k2, k2, h, ctx);
result = fq_nmod_mpoly_equal(k1, k2, ctx);
if (!result)
{
printf("FAIL\n");
flint_printf("Check f - (g + h) = (f - g) - h\ni = %wd, j = %wd\n", i ,j);
flint_abort();
}
}
fq_nmod_mpoly_clear(f, ctx);
fq_nmod_mpoly_clear(g, ctx);
fq_nmod_mpoly_clear(h, ctx);
fq_nmod_mpoly_clear(k1, ctx);
fq_nmod_mpoly_clear(k2, ctx);
fq_nmod_mpoly_ctx_clear(ctx);
}
/* Check aliasing first arg */
for (i = 0; i < 10 * flint_test_multiplier(); i++)
{
fq_nmod_mpoly_ctx_t ctx;
fq_nmod_mpoly_t f, g, h;
slong len1, len2;
flint_bitcnt_t exp_bits1, exp_bits2;
fq_nmod_mpoly_ctx_init_rand(ctx, state, 20, FLINT_BITS, 10);
fq_nmod_mpoly_init(f, ctx);
fq_nmod_mpoly_init(g, ctx);
fq_nmod_mpoly_init(h, ctx);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
exp_bits1 = n_randint(state, 200) + 2;
exp_bits2 = n_randint(state, 200) + 2;
for (j = 0; j < 4; j++)
{
fq_nmod_mpoly_randtest_bits(f, state, len1, exp_bits1, ctx);
fq_nmod_mpoly_randtest_bits(g, state, len2, exp_bits2, ctx);
fq_nmod_mpoly_set(h, f, ctx);
fq_nmod_mpoly_add(f, f, g, ctx);
fq_nmod_mpoly_assert_canonical(f, ctx);
fq_nmod_mpoly_sub(f, f, g, ctx);
fq_nmod_mpoly_assert_canonical(f, ctx);
result = fq_nmod_mpoly_equal(f, h, ctx);
if (!result)
{
printf("FAIL\n");
flint_printf("Check aliasing first arg\ni = %wd, j = %wd\n", i ,j);
flint_abort();
}
}
fq_nmod_mpoly_clear(f, ctx);
fq_nmod_mpoly_clear(g, ctx);
fq_nmod_mpoly_clear(h, ctx);
fq_nmod_mpoly_ctx_clear(ctx);
}
/* Check aliasing second arg */
for (i = 0; i < 10 * flint_test_multiplier(); i++)
{
fq_nmod_mpoly_ctx_t ctx;
fq_nmod_mpoly_t f, g, h;
slong len, len1, len2;
flint_bitcnt_t exp_bits, exp_bits1, exp_bits2;
fq_nmod_mpoly_ctx_init_rand(ctx, state, 20, FLINT_BITS, 10);
fq_nmod_mpoly_init(f, ctx);
fq_nmod_mpoly_init(g, ctx);
fq_nmod_mpoly_init(h, ctx);
len = n_randint(state, 100);
len1 = n_randint(state, 100);
len2 = n_randint(state, 100);
exp_bits = n_randint(state, 200) + 2;
exp_bits1 = n_randint(state, 200) + 2;
exp_bits2 = n_randint(state, 200) + 2;
for (j = 0; j < 4; j++)
{
fq_nmod_mpoly_randtest_bits(f, state, len1, exp_bits1, ctx);
fq_nmod_mpoly_randtest_bits(g, state, len2, exp_bits2, ctx);
fq_nmod_mpoly_randtest_bits(h, state, len, exp_bits, ctx);
if ((j % 2) == 0)
{
fq_nmod_mpoly_add(h, g, f, ctx);
fq_nmod_mpoly_assert_canonical(h, ctx);
fq_nmod_mpoly_add(f, g, f, ctx);
fq_nmod_mpoly_assert_canonical(f, ctx);
} else
{
fq_nmod_mpoly_sub(h, g, f, ctx);
fq_nmod_mpoly_assert_canonical(h, ctx);
fq_nmod_mpoly_sub(f, g, f, ctx);
fq_nmod_mpoly_assert_canonical(f, ctx);
}
result = fq_nmod_mpoly_equal(f, h, ctx);
if (!result)
{
printf("FAIL\n");
flint_printf("Check aliasing second arg\ni = %wd, j = %wd\n", i ,j);
flint_abort();
}
}
fq_nmod_mpoly_clear(f, ctx);
fq_nmod_mpoly_clear(g, ctx);
fq_nmod_mpoly_clear(h, ctx);
fq_nmod_mpoly_ctx_clear(ctx);
}
FLINT_TEST_CLEANUP(state);
flint_printf("PASS\n");
return 0;
}