arb/fmpr/test/t-mul_ui.c
2014-04-18 16:17:22 +02:00

120 lines
3.7 KiB
C

/*=============================================================================
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) 2012, 2014 Fredrik Johansson
******************************************************************************/
#include "fmpr.h"
#include "ulong_extras.h"
static long
fmpr_mul_ui_naive(fmpr_t z, const fmpr_t x, ulong y, long prec, fmpr_rnd_t rnd)
{
fmpr_t t; long r;
fmpr_init(t);
fmpr_set_ui(t, y);
r = fmpr_mul(z, x, t, prec, rnd);
fmpr_clear(t);
return r;
}
int main()
{
long iter, iter2;
flint_rand_t state;
printf("mul_ui....");
fflush(stdout);
flint_randinit(state);
for (iter = 0; iter < 3000; iter++)
{
fmpr_t x, z, v;
ulong y;
long prec, r1, r2;
fmpr_rnd_t rnd;
fmpr_init(x);
fmpr_init(z);
fmpr_init(v);
for (iter2 = 0; iter2 < 30; iter2++)
{
fmpr_randtest_special(x, state, 2000, 200);
y = n_randtest(state);
prec = 2 + n_randint(state, 2000);
switch (n_randint(state, 4))
{
case 0: rnd = FMPR_RND_DOWN; break;
case 1: rnd = FMPR_RND_UP; break;
case 2: rnd = FMPR_RND_FLOOR; break;
default: rnd = FMPR_RND_CEIL; break;
}
switch (n_randint(state, 2))
{
case 0:
r1 = fmpr_mul_ui(z, x, y, prec, rnd);
r2 = fmpr_mul_ui_naive(v, x, y, prec, rnd);
if (!fmpr_equal(z, v) || r1 != r2)
{
printf("FAIL!\n");
printf("x = "); fmpr_print(x); printf("\n\n");
printf("y = %lu\n\n", y);
printf("z = "); fmpr_print(z); printf("\n\n");
printf("v = "); fmpr_print(v); printf("\n\n");
printf("r1 = %ld, r2 = %ld\n", r1, r2);
abort();
}
break;
default:
fmpr_set(v, x);
fmpr_set(z, x);
r1 = fmpr_mul_ui(z, z, y, prec, rnd);
r2 = fmpr_mul_ui_naive(v, v, y, prec, rnd);
if (!fmpr_equal(z, v) || r1 != r2)
{
printf("FAIL (aliasing 1)!\n");
printf("x = "); fmpr_print(x); printf("\n\n");
printf("y = %lu\n\n", y);
printf("z = "); fmpr_print(z); printf("\n\n");
printf("v = "); fmpr_print(v); printf("\n\n");
printf("r1 = %ld, r2 = %ld\n", r1, r2);
abort();
}
break;
}
}
fmpr_clear(x);
fmpr_clear(z);
fmpr_clear(v);
}
flint_randclear(state);
flint_cleanup();
printf("PASS\n");
return EXIT_SUCCESS;
}