1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
/* tmag.c -- Test mpfi_mag.
Copyright 2010,
Spaces project, Inria Lorraine
and Salsa project, INRIA Rocquencourt,
and Arenaire project, Inria Rhone-Alpes, France
and Lab. ANO, USTL (Univ. of Lille), France
This file is part of the MPFI Library.
The MPFI 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 2.1 of the License, or (at your
option) any later version.
The MPFI 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 MPFI Library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
MA 02110-1301, USA. */
#include "mpfi-tests.h"
void
test_random (mp_prec_t prec_min, mp_prec_t prec_max)
{
mpfr_t x;
mpfi_t i;
mp_prec_t prec;
int dl, dr, d0;
int ret;
mpfr_init2 (x, prec_max);
mpfi_init2 (i, prec_max);
for (prec = prec_min; prec < prec_max; prec++) {
mpfi_set_prec (i, prec);
mpfr_set_prec (x, prec);
random_interval (i);
ret = mpfi_mag (x, i);
dl = mpfr_cmp_abs (x, &(i->left));
dr = mpfr_cmp_abs (x, &(i->right));
if (dl < 0 || dr < 0) {
printf ("Error: mpfi_mag(x, I) returns a value x less than some "
"elements in I.\nI = ");
mpfi_out_str (stdout, 10, 0, i);
printf ("\nx = ");
mpfr_out_str (stdout, 10, 0, x, MPFI_RNDD);
printf ("\n");
exit (1);
}
d0 = mpfr_cmp_ui (x, 0);
if (d0 < 0) {
printf ("Error: mpfi_mag(x, I) returns a negative value.\nI = ");
mpfi_out_str (stdout, 10, 0, i);
printf ("\nx = ");
mpfr_out_str (stdout, 10, 0, x, MPFI_RNDD);
printf ("\n");
exit (1);
}
if (dl != 0 && dr != 0 && d0 != 0) {
printf ("Error: mpfi_mag(x, I) returns a value x that is not an "
"endpoint of abs(I).\nI = ");
mpfi_out_str (stdout, 10, 0, i);
printf ("\nx = ");
mpfr_out_str (stdout, 10, 0, x, MPFI_RNDD);
printf ("\n");
exit (1);
}
if (ret != 0) {
printf ("Error: mpfi_mag(x, I) returns a nonexact value x while the "
"precisions of x and I are equal.\nprecision(I) = %lu, I = ",
mpfi_get_prec (i));
mpfi_out_str (stdout, 10, 0, i);
printf ("\nprecision(x) = %lu, x = ", mpfr_get_prec (x));
mpfr_out_str (stdout, 10, 0, x, MPFI_RNDD);
printf ("\n");
exit (1);
}
}
mpfr_clear (x);
mpfi_clear (i);
}
int
main (int argc, char **argv)
{
struct mpfi_function_t i_mag;
mpfi_fun_init_RI (&i_mag, mpfi_mag, NULL);
test_start ();
check_data (&i_mag, "mag.dat");
test_random (2, 1023);
test_end ();
mpfi_fun_clear (&i_mag);
return 0;
}
|