ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
127 lines
3.0 KiB
C
127 lines
3.0 KiB
C
/* Test file for mpfr_erandom
|
|
|
|
Copyright 2011-2025 Free Software Foundation, Inc.
|
|
Contributed by the Pascaline and Caramba projects, INRIA.
|
|
|
|
This file is part of the GNU MPFR Library.
|
|
|
|
The GNU MPFR Library is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or (at your
|
|
option) any later version.
|
|
|
|
The GNU MPFR Library 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 Lesser General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with the GNU MPFR Library; see the file COPYING.LESSER.
|
|
If not, see <https://www.gnu.org/licenses/>. */
|
|
|
|
#include "mpfr-test.h"
|
|
|
|
static void
|
|
test_special (mpfr_prec_t p)
|
|
{
|
|
mpfr_t x;
|
|
int inexact;
|
|
|
|
mpfr_init2 (x, p);
|
|
|
|
inexact = mpfr_erandom (x, RANDS, MPFR_RNDN);
|
|
if (inexact == 0)
|
|
{
|
|
printf ("Error: mpfr_erandom() returns a zero ternary value.\n");
|
|
exit (1);
|
|
}
|
|
|
|
mpfr_clear(x);
|
|
}
|
|
|
|
|
|
static void
|
|
test_erandom (long nbtests, mpfr_prec_t prec, mpfr_rnd_t rnd,
|
|
int verbose)
|
|
{
|
|
mpfr_t *t;
|
|
int i, inexact;
|
|
|
|
t = (mpfr_t *) tests_allocate (nbtests * sizeof (mpfr_t));
|
|
|
|
for (i = 0; i < nbtests; ++i)
|
|
mpfr_init2 (t[i], prec);
|
|
|
|
for (i = 0; i < nbtests; i++)
|
|
{
|
|
inexact = mpfr_erandom (t[i], RANDS, MPFR_RNDN);
|
|
if (inexact == 0)
|
|
{
|
|
/* one call in the loop pretended to return an exact number! */
|
|
printf ("Error: mpfr_erandom() returns a zero ternary value.\n");
|
|
exit (1);
|
|
}
|
|
}
|
|
|
|
#if defined(HAVE_STDARG) && !defined(MPFR_USE_MINI_GMP)
|
|
if (verbose)
|
|
{
|
|
mpfr_t av, va, tmp;
|
|
|
|
mpfr_init2 (av, prec);
|
|
mpfr_init2 (va, prec);
|
|
mpfr_init2 (tmp, prec);
|
|
|
|
mpfr_set_ui (av, 0, MPFR_RNDN);
|
|
mpfr_set_ui (va, 0, MPFR_RNDN);
|
|
for (i = 0; i < nbtests; ++i)
|
|
{
|
|
mpfr_add (av, av, t[i], MPFR_RNDN);
|
|
mpfr_sqr (tmp, t[i], MPFR_RNDN);
|
|
mpfr_add (va, va, tmp, MPFR_RNDN);
|
|
}
|
|
mpfr_div_ui (av, av, nbtests, MPFR_RNDN);
|
|
mpfr_div_ui (va, va, nbtests, MPFR_RNDN);
|
|
mpfr_sqr (tmp, av, MPFR_RNDN);
|
|
mpfr_sub (va, va, av, MPFR_RNDN);
|
|
|
|
mpfr_printf ("Average = %.5Rf\nVariance = %.5Rf\n", av, va);
|
|
mpfr_clear (av);
|
|
mpfr_clear (va);
|
|
mpfr_clear (tmp);
|
|
}
|
|
#endif /* HAVE_STDARG */
|
|
|
|
for (i = 0; i < nbtests; ++i)
|
|
mpfr_clear (t[i]);
|
|
tests_free (t, nbtests * sizeof (mpfr_t));
|
|
return;
|
|
}
|
|
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
long nbtests;
|
|
int verbose;
|
|
|
|
tests_start_mpfr ();
|
|
|
|
verbose = 0;
|
|
nbtests = 10;
|
|
if (argc > 1)
|
|
{
|
|
long a = atol (argv[1]);
|
|
verbose = 1;
|
|
if (a != 0)
|
|
nbtests = a;
|
|
}
|
|
|
|
test_erandom (nbtests, 420, MPFR_RNDN, verbose);
|
|
test_special (2);
|
|
test_special (42000);
|
|
|
|
tests_end_mpfr ();
|
|
return 0;
|
|
}
|