mirror of
https://github.com/vale981/arb
synced 2025-03-06 01:41:39 -05:00
84 lines
2.2 KiB
C
84 lines
2.2 KiB
C
/*
|
|
Copyright (C) 2014 Fredrik Johansson
|
|
|
|
This file is part of Arb.
|
|
|
|
Arb 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 <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "arf.h"
|
|
|
|
int main()
|
|
{
|
|
slong iter;
|
|
flint_rand_t state;
|
|
|
|
flint_printf("set_round_ui....");
|
|
fflush(stdout);
|
|
|
|
flint_randinit(state);
|
|
|
|
for (iter = 0; iter < 1000000 * arb_test_multiplier(); iter++)
|
|
{
|
|
arf_t x, y;
|
|
slong prec, fix1;
|
|
int ret1, ret2;
|
|
mp_limb_t t;
|
|
arf_rnd_t rnd;
|
|
|
|
prec = 2 + n_randint(state, 1000);
|
|
|
|
arf_init(x);
|
|
arf_init(y);
|
|
|
|
arf_randtest_special(x, state, 1 + n_randint(state, 200), 1 + n_randint(state, 100));
|
|
arf_randtest_special(y, state, 1 + n_randint(state, 200), 1 + n_randint(state, 100));
|
|
|
|
t = n_randtest(state);
|
|
|
|
switch (n_randint(state, 5))
|
|
{
|
|
case 0: rnd = ARF_RND_DOWN; break;
|
|
case 1: rnd = ARF_RND_UP; break;
|
|
case 2: rnd = ARF_RND_FLOOR; break;
|
|
case 3: rnd = ARF_RND_CEIL; break;
|
|
default: rnd = ARF_RND_NEAR; break;
|
|
}
|
|
|
|
if (t == 0)
|
|
{
|
|
arf_zero(x);
|
|
ret1 = 0;
|
|
}
|
|
else
|
|
{
|
|
ret1 = _arf_set_round_mpn(x, &fix1, &t, 1, 0, prec, rnd);
|
|
fmpz_set_si(ARF_EXPREF(x), FLINT_BITS + fix1);
|
|
}
|
|
|
|
ret2 = arf_set_round_ui(y, t, prec, rnd);
|
|
|
|
if (!arf_equal(x, y) || (ret1 != ret2))
|
|
{
|
|
flint_printf("FAIL\n\n");
|
|
flint_printf("prec = %wd", prec); flint_printf("\n\n");
|
|
flint_printf("t = %wu\n\n", t);
|
|
flint_printf("x = "); arf_print(x); flint_printf("\n\n");
|
|
flint_printf("y = "); arf_print(y); flint_printf("\n\n");
|
|
flint_printf("ret1 = %d, ret2 = %d\n\n", ret1, ret2);
|
|
abort();
|
|
}
|
|
|
|
arf_clear(x);
|
|
arf_clear(y);
|
|
}
|
|
|
|
flint_randclear(state);
|
|
flint_cleanup();
|
|
flint_printf("PASS\n");
|
|
return EXIT_SUCCESS;
|
|
}
|
|
|