/*
Copyright (C) 2020 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 "fmpz_mpoly.h"
int
main(void)
{
slong i, j;
FLINT_TEST_INIT(state);
flint_printf("scalar_fmma....");
fflush(stdout);
for (i = 0; i < 20 * flint_test_multiplier(); i++)
{
fmpz_mpoly_ctx_t ctx;
fmpz_mpoly_t f, g, h, t1, t2;
fmpz_t a, b;
slong len, coeff_bits, exp_bits;
fmpz_init(a);
fmpz_init(b);
fmpz_mpoly_ctx_init_rand(ctx, state, 20);
fmpz_mpoly_init(f, ctx);
fmpz_mpoly_init(g, ctx);
fmpz_mpoly_init(h, ctx);
fmpz_mpoly_init(t1, ctx);
fmpz_mpoly_init(t2, ctx);
len = n_randint(state, 100);
exp_bits = n_randint(state, 200) + 1;
coeff_bits = n_randint(state, 200);
for (j = 0; j < 10; j++)
{
fmpz_randtest(a, state, n_randint(state, 200));
fmpz_randtest(b, state, n_randint(state, 200));
fmpz_mpoly_randtest_bits(f, state, len, coeff_bits, exp_bits, ctx);
fmpz_mpoly_randtest_bits(g, state, len, coeff_bits, exp_bits, ctx);
fmpz_mpoly_randtest_bits(t1, state, len, coeff_bits, exp_bits, ctx);
len = n_randint(state, 100);
exp_bits = n_randint(state, 200) + 1;
coeff_bits = n_randint(state, 200);
fmpz_mpoly_randtest_bits(h, state, len, coeff_bits, exp_bits, ctx);
fmpz_mpoly_randtest_bits(t2, state, len, coeff_bits, exp_bits, ctx);
fmpz_mpoly_scalar_fmma(f, g, a, h, b, ctx);
fmpz_mpoly_assert_canonical(f, ctx);
fmpz_mpoly_scalar_mul_fmpz(t1, g, a, ctx);
fmpz_mpoly_scalar_mul_fmpz(t2, h, b, ctx);
fmpz_mpoly_add(t1, t1, t2, ctx);
if (!fmpz_mpoly_equal(f, t1, ctx))
{
flint_printf("FAIL: check fmma definition\n");
flint_printf("i = %wd, j = %wd\n", i,j);
flint_abort();
}
fmpz_mpoly_set(t1, g, ctx);
fmpz_mpoly_scalar_fmma(t1, t1, a, h, b, ctx);
fmpz_mpoly_assert_canonical(t1, ctx);
if (!fmpz_mpoly_equal(f, t1, ctx))
{
flint_printf("FAIL: check aliasing first argument\n");
flint_printf("i = %wd, j = %wd\n", i,j);
flint_abort();
}
fmpz_mpoly_set(t1, h, ctx);
fmpz_mpoly_scalar_fmma(t1, g, a, t1, b, ctx);
fmpz_mpoly_assert_canonical(t1, ctx);
if (!fmpz_mpoly_equal(f, t1, ctx))
{
flint_printf("FAIL: check aliasing second argument\n");
flint_printf("i = %wd, j = %wd\n", i,j);
flint_abort();
}
fmpz_mpoly_scalar_fmma(f, g, a, g, b, ctx);
fmpz_mpoly_set(t1, g, ctx);
fmpz_mpoly_scalar_fmma(t1, t1, a, t1, b, ctx);
fmpz_mpoly_assert_canonical(t1, ctx);
if (!fmpz_mpoly_equal(f, t1, ctx))
{
flint_printf("FAIL: check aliasing both arguments\n");
flint_printf("i = %wd, j = %wd\n", i,j);
flint_abort();
}
}
fmpz_mpoly_clear(f, ctx);
fmpz_mpoly_clear(g, ctx);
fmpz_mpoly_clear(h, ctx);
fmpz_mpoly_clear(t1, ctx);
fmpz_mpoly_clear(t2, ctx);
fmpz_clear(a);
fmpz_clear(b);
}
FLINT_TEST_CLEANUP(state);
flint_printf("PASS\n");
return 0;
}