2013-02-17 17:58:15 +01:00
|
|
|
/*=============================================================================
|
|
|
|
|
|
|
|
This file is part of ARB.
|
|
|
|
|
|
|
|
ARB is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ARB is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with ARB; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
|
|
|
|
=============================================================================*/
|
|
|
|
/******************************************************************************
|
|
|
|
|
|
|
|
Copyright (C) 2013 Fredrik Johansson
|
|
|
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
#include "fmpz_extras.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
2015-11-05 18:04:40 +00:00
|
|
|
slong iter;
|
2013-02-17 17:58:15 +01:00
|
|
|
flint_rand_t state;
|
|
|
|
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("add_si_inline....");
|
2013-02-17 17:58:15 +01:00
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
flint_randinit(state);
|
|
|
|
|
2016-04-10 17:24:58 +02:00
|
|
|
for (iter = 0; iter < 100000 * arb_test_multiplier(); iter++)
|
2013-02-17 17:58:15 +01:00
|
|
|
{
|
|
|
|
fmpz_t a, c, d;
|
2015-11-05 18:04:40 +00:00
|
|
|
slong b;
|
2013-02-17 17:58:15 +01:00
|
|
|
|
|
|
|
fmpz_init(a);
|
|
|
|
fmpz_init(c);
|
|
|
|
fmpz_init(d);
|
|
|
|
|
|
|
|
fmpz_randtest(a, state, 1 + n_randint(state, 200));
|
|
|
|
fmpz_randtest(c, state, 1 + n_randint(state, 200));
|
|
|
|
fmpz_randtest(d, state, 1 + n_randint(state, 200));
|
|
|
|
b = n_randtest(state);
|
|
|
|
|
|
|
|
fmpz_add_si(c, a, b);
|
|
|
|
fmpz_add_si_inline(d, a, b);
|
|
|
|
|
|
|
|
if (!fmpz_equal(c, d))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL\n");
|
|
|
|
fmpz_print(a); flint_printf("\n\n");
|
|
|
|
flint_printf("%wd", b); flint_printf("\n\n");
|
|
|
|
fmpz_print(c); flint_printf("\n\n");
|
|
|
|
fmpz_print(d); flint_printf("\n\n");
|
2013-02-17 17:58:15 +01:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
fmpz_add_si_inline(a, a, b);
|
|
|
|
if (!fmpz_equal(c, a))
|
|
|
|
{
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("FAIL (aliasing)\n");
|
|
|
|
fmpz_print(a); flint_printf("\n\n");
|
|
|
|
flint_printf("%wd", b); flint_printf("\n\n");
|
|
|
|
fmpz_print(c); flint_printf("\n\n");
|
|
|
|
fmpz_print(d); flint_printf("\n\n");
|
2013-02-17 17:58:15 +01:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
fmpz_clear(a);
|
|
|
|
fmpz_clear(c);
|
|
|
|
fmpz_clear(d);
|
|
|
|
}
|
|
|
|
|
|
|
|
flint_randclear(state);
|
2013-07-30 13:53:10 +02:00
|
|
|
flint_cleanup();
|
2015-11-06 16:17:27 +00:00
|
|
|
flint_printf("PASS\n");
|
2013-02-17 17:58:15 +01:00
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
|
|
|
|