arb/fmpr/randtest.c

67 lines
2.2 KiB
C
Raw Normal View History

2012-04-05 15:57:19 +02: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
2012-04-05 15:57:19 +02:00
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
2012-04-05 15:57:19 +02:00
=============================================================================*/
/******************************************************************************
Copyright (C) 2012 Fredrik Johansson
******************************************************************************/
#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
}
}