Files
vasilito facf0c92e0 feat: track all source trees in git — full fork offline-first model
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.
2026-05-14 10:55:53 +01:00

301 lines
7.9 KiB
C

/* Test file for mpfr_ui_pow and mpfr_ui_pow_ui.
Copyright 2001-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
test1 (void)
{
mpfr_t x, y, z, a;
int res1, res2;
mpfr_init2 (x, 32);
mpfr_init2 (y, 65);
mpfr_init2 (z, 17);
mpfr_init2 (a, 17);
mpfr_set_str_binary (x, "-0.101110001001011011011e-9");
mpfr_ui_pow (y, 7, x, MPFR_RNDN);
mpfr_set_prec (x, 40);
mpfr_set_str_binary (x, "-0.1100101100101111011001010010110011110110E-1");
mpfr_set_prec (y, 74);
mpfr_ui_pow (y, 8, x, MPFR_RNDN);
mpfr_set_prec (x, 74);
mpfr_set_str_binary (x, "0.11100000010100111101000011111011011010011000011000101011010011010101000011E-1");
if (mpfr_cmp (x, y))
{
printf ("Error for input of 40 bits, output of 74 bits\n");
exit (1);
}
/* Check for ui_pow_ui */
mpfr_ui_pow_ui (x, 0, 1, MPFR_RNDN);
MPFR_ASSERTN(mpfr_cmp_ui (x, 0) == 0 && MPFR_IS_POS (x));
mpfr_ui_pow_ui (x, 0, 4, MPFR_RNDN);
MPFR_ASSERTN(mpfr_cmp_ui (x, 0) == 0 && MPFR_IS_POS (x));
res1 = mpfr_ui_pow_ui (z, 17, 42, MPFR_RNDD);
mpfr_set_ui (x, 17, MPFR_RNDN);
mpfr_set_ui (y, 42, MPFR_RNDN);
res2 = mpfr_pow (a, x, y, MPFR_RNDD);
if (mpfr_cmp (z, a) || res1 != res2)
{
printf ("Error for ui_pow_ui for 17^42\n"
"Inexact1 = %d Inexact2 = %d\n", res1, res2);
mpfr_dump (z);
mpfr_dump (a);
exit (1);
}
mpfr_set_prec (x, 2);
mpfr_ui_pow_ui (x, 65537, 65535, MPFR_RNDN);
if (mpfr_cmp_str (x, "0.11E1048562", 2, MPFR_RNDN) != 0)
{
printf ("Error for ui_pow_ui for 65537 ^65535 with 2 bits of precision\n");
mpfr_dump (x);
exit (1);
}
mpfr_clear (x);
mpfr_clear (y);
mpfr_clear (z);
mpfr_clear (a);
}
static void
check1 (mpfr_ptr x, mpfr_prec_t prec, unsigned long nt, mpfr_rnd_t rnd)
{
mpfr_t y, z, t;
int inexact, compare, compare2;
mpfr_prec_t yprec;
mpfr_exp_t err;
yprec = prec + 10;
mpfr_init (y);
mpfr_init (z);
mpfr_init (t);
mpfr_set_prec (y, yprec);
mpfr_set_prec (z, prec);
mpfr_set_prec (t, prec);
compare = mpfr_ui_pow (y, nt, x, rnd);
err = (rnd == MPFR_RNDN) ? yprec + 1 : yprec;
if (mpfr_can_round (y, err, rnd, rnd, prec))
{
mpfr_set (t, y, rnd);
inexact = mpfr_ui_pow (z, nt, x, rnd);
if (mpfr_cmp (t, z))
{
printf ("results differ for x=");
mpfr_out_str (stdout, 2, prec, x, MPFR_RNDN);
printf (" n=%lu", nt);
printf (" prec=%u rnd_mode=%s\n", (unsigned) prec,
mpfr_print_rnd_mode (rnd));
printf ("got ");
mpfr_dump (z);
printf ("expected ");
mpfr_dump (t);
printf ("approx ");
mpfr_dump (y);
exit (1);
}
compare2 = mpfr_cmp (t, y);
/* if rounding to nearest, cannot know the sign of t - f(x)
because of composed rounding: y = o(f(x)) and t = o(y) */
if ((rnd != MPFR_RNDN) && (compare * compare2 >= 0))
compare = compare + compare2;
else
compare = inexact; /* cannot determine sign(t-f(x)) */
if (((inexact == 0) && (compare != 0)) ||
((inexact > 0) && (compare <= 0)) ||
((inexact < 0) && (compare >= 0)))
{
printf ("Wrong inexact flag for rnd=%s: expected %d, got %d\n",
mpfr_print_rnd_mode (rnd), compare, inexact);
printf ("x="); mpfr_dump (x);
printf ("y="); mpfr_dump (y);
printf ("t="); mpfr_dump (t);
exit (1);
}
}
mpfr_clear (y);
mpfr_clear (z);
mpfr_clear (t);
}
static void
huge (void)
{
mpfr_exp_t old_emin, old_emax;
mpfr_t x;
old_emin = mpfr_get_emin ();
old_emax = mpfr_get_emax ();
set_emin (MPFR_EMIN_MIN);
set_emax (MPFR_EMAX_MAX);
mpfr_init2 (x, 8);
/* The purpose of this test is more to check that mpfr_ui_pow_ui
terminates (without taking much memory) rather than checking
the value of x. On 2023-02-13, the +Inf case was not handled
in the Ziv iteration, yielding an infinite loop, affecting
mpfr_log10 in particular. See
commit 90de094f0d9c309daca707aa227470d810866616
*/
mpfr_ui_pow_ui (x, 5, ULONG_MAX, MPFR_RNDN);
if (MPFR_EMAX_MAX <= ULONG_MAX) /* true with default _MPFR_EXP_FORMAT */
MPFR_ASSERTN (MPFR_IS_INF (x));
mpfr_clear (x);
set_emin (old_emin);
set_emax (old_emax);
}
static void
test2 (void)
{
mpfr_t x, y, z, t;
mpfr_prec_t prec;
mpfr_rnd_t rnd;
unsigned int n;
mpfr_prec_t p0 = 2, p1 = 100;
unsigned int N = 20;
mpfr_init2 (x, 2);
mpfr_init2 (y, 2);
mpfr_init2 (z, 38);
mpfr_init2 (t, 6);
/* check exact power */
mpfr_set_str_binary (t, "0.110000E5");
mpfr_ui_pow (z, 3, t, MPFR_RNDN);
mpfr_set_str (x, "-0.5", 10, MPFR_RNDZ);
mpfr_ui_pow (y, 4, x, MPFR_RNDD);
if (mpfr_cmp_ui_2exp (y, 1, -1))
{
printf ("Error for 4^(-0.5), prec=2, MPFR_RNDD\n");
printf ("expected 0.5, got ");
mpfr_out_str (stdout, 2, 0, y, MPFR_RNDN);
printf ("\n");
exit (1);
}
/* problem found by Kevin on spe175.testdrive.compaq.com
(03 Sep 2003), ia64 under HP-UX */
mpfr_set_str (x, "0.5", 10, MPFR_RNDN);
mpfr_ui_pow (y, 398441521, x, MPFR_RNDN);
if (mpfr_cmp_ui_2exp (y, 1, 14))
{
printf ("Error for 398441521^(0.5), prec=2, MPFR_RNDN\n");
printf ("expected 1.0e14, got ");
mpfr_out_str (stdout, 2, 0, y, MPFR_RNDN);
printf ("\n");
exit (1);
}
mpfr_set_str (x, "0.5", 10, MPFR_RNDN);
check1 (x, 2, 398441521, MPFR_RNDN); /* 398441521 = 19961^2 */
/* generic test */
for (prec = p0; prec <= p1; prec++)
{
mpfr_set_prec (x, prec);
for (n = 0; n < N; n++)
{
int nt;
nt = randlimb () & INT_MAX;
mpfr_urandomb (x, RANDS);
rnd = RND_RAND_NO_RNDF ();
check1 (x, prec, nt, rnd);
}
}
mpfr_clears (x, y, z, t, (mpfr_ptr) 0);
}
/* reverse the arguments n and x for tgeneric_ui.c */
static int
ui_pow_rev (mpfr_ptr y, mpfr_srcptr x, unsigned long n, mpfr_rnd_t rnd)
{
return mpfr_ui_pow (y, n, x, rnd);
}
#define TEST_FUNCTION ui_pow_rev
#define INTEGER_TYPE unsigned long
#define RAND_FUNCTION(x) mpfr_random2(x, MPFR_LIMB_SIZE (x), 1, RANDS)
#define INT_RAND_FUNCTION() \
(randlimb () % 16 == 0 ? randulong () : (unsigned long) (randlimb () % 32))
#include "tgeneric_ui.c"
int
main (int argc, char *argv[])
{
mpfr_t x, y;
unsigned long int n;
tests_start_mpfr ();
mpfr_init (x);
mpfr_init (y);
do n = randlimb (); while (n <= 1);
MPFR_SET_INF (x);
mpfr_ui_pow (y, n, x, MPFR_RNDN);
if (! MPFR_IS_INF (y))
{
printf ("evaluation of function at INF does not return INF\n");
exit (1);
}
MPFR_CHANGE_SIGN (x);
mpfr_ui_pow (y, n, x, MPFR_RNDN);
if (! MPFR_IS_ZERO (y))
{
printf ("evaluation of function in -INF does not return 0\n");
exit (1);
}
MPFR_SET_NAN (x);
mpfr_ui_pow (y, n, x, MPFR_RNDN);
if (! MPFR_IS_NAN (y))
{
printf ("evaluation of function in NAN does not return NAN\n");
exit (1);
}
mpfr_clear (x);
mpfr_clear (y);
test1 ();
test2 ();
huge ();
test_generic_ui (MPFR_PREC_MIN, 100, 100);
tests_end_mpfr ();
return 0;
}