/*
Copyright (C) 2018 Fredrik Johansson
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
#include "flint.h"
#include "ulong_extras.h"
#include "fmpz.h"
int
main(void)
{
int i;
FLINT_TEST_INIT(state);
flint_printf("fmms....");
fflush(stdout);
for (i = 0; i < 1000 * flint_test_multiplier(); i++)
{
fmpz_t a, b, c, d, f, g;
fmpz *aptr, *bptr, *cptr, *dptr;
fmpz_init(a);
fmpz_init(b);
fmpz_init(c);
fmpz_init(d);
fmpz_init(f);
fmpz_init(g);
fmpz_randtest(f, state, 200);
fmpz_randtest(g, state, 200);
if (n_randint(state, 2)) { fmpz_randtest(a, state, 200); aptr = a; }
else { fmpz_set(a, f); aptr = f; }
if (n_randint(state, 2)) { fmpz_randtest(b, state, 200); bptr = b; }
else { fmpz_set(b, f); bptr = f; }
if (n_randint(state, 2)) { fmpz_randtest(c, state, 200); cptr = c; }
else { fmpz_set(c, f); cptr = f; }
if (n_randint(state, 2)) { fmpz_randtest(d, state, 200); dptr = d; }
else { fmpz_set(d, f); dptr = f; }
fmpz_fmms(f, aptr, bptr, cptr, dptr);
fmpz_mul(g, a, b);
fmpz_submul(g, c, d);
if (!fmpz_equal(f, g))
{
flint_printf("FAIL:\n");
fmpz_print(a); flint_printf("\n");
fmpz_print(b); flint_printf("\n");
fmpz_print(c); flint_printf("\n");
fmpz_print(d); flint_printf("\n");
fmpz_print(f); flint_printf("\n");
fmpz_print(g); flint_printf("\n");
flint_abort();
}
fmpz_clear(a);
fmpz_clear(b);
fmpz_clear(c);
fmpz_clear(d);
fmpz_clear(f);
fmpz_clear(g);
}
FLINT_TEST_CLEANUP(state);
flint_printf("PASS\n");
return 0;
}