arb/fmpr/randtest.c

53 lines
1.5 KiB
C
Raw Normal View History

/*
2012-04-05 15:57:19 +02:00
Copyright (C) 2012 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/>.
*/
2012-04-05 15:57:19 +02:00
#include "fmpr.h"
2012-04-05 15:57:19 +02:00
void
2015-11-05 18:03:08 +00:00
fmpr_randtest(fmpr_t x, flint_rand_t state, slong bits, slong mag_bits)
2012-09-04 16:11:16 +02:00
{
fmpz_randtest(fmpr_manref(x), state, bits);
2012-09-10 17:07:41 +02:00
fmpz_randtest(fmpr_expref(x), state, mag_bits);
2012-11-08 15:49:44 +01:00
fmpz_sub_ui(fmpr_expref(x), fmpr_expref(x), fmpz_bits(fmpr_manref(x)));
2012-09-04 16:11:16 +02:00
_fmpr_normalise(fmpr_manref(x), fmpr_expref(x), bits, FMPR_RND_DOWN);
}
void
2015-11-05 18:03:08 +00:00
fmpr_randtest_not_zero(fmpr_t x, flint_rand_t state, slong bits, slong mag_bits)
2012-04-05 15:57:19 +02:00
{
fmpz_randtest_not_zero(fmpr_manref(x), state, bits);
2012-09-10 17:07:41 +02:00
fmpz_randtest(fmpr_expref(x), state, mag_bits);
2012-11-08 15:49:44 +01:00
fmpz_sub_ui(fmpr_expref(x), fmpr_expref(x), fmpz_bits(fmpr_manref(x)));
_fmpr_normalise(fmpr_manref(x), fmpr_expref(x), bits, FMPR_RND_DOWN);
2012-04-05 15:57:19 +02:00
}
void
2015-11-05 18:03:08 +00:00
fmpr_randtest_special(fmpr_t x, flint_rand_t state, slong bits, slong mag_bits)
2012-04-05 15:57:19 +02:00
{
switch (n_randint(state, 32))
2012-04-05 15:57:19 +02:00
{
case 0:
fmpr_zero(x);
break;
case 1:
fmpr_pos_inf(x);
break;
case 2:
fmpr_neg_inf(x);
break;
case 3:
fmpr_nan(x);
break;
default:
2012-09-10 17:07:41 +02:00
fmpr_randtest_not_zero(x, state, bits, mag_bits);
2012-04-05 15:57:19 +02:00
}
}