summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordaney <daney@280ebfd0-de03-0410-8827-d642c229c3f4>2001-04-05 17:17:38 +0000
committerdaney <daney@280ebfd0-de03-0410-8827-d642c229c3f4>2001-04-05 17:17:38 +0000
commit9a0c2a255e8a91ee0fe2fcc2dacc33a45d36304c (patch)
tree7879d709025877a933ccbf9feaabdc46e1bbeed7
parent60e44cb4464f061475d21dc93be8cc07632c4b36 (diff)
downloadmpfr-9a0c2a255e8a91ee0fe2fcc2dacc33a45d36304c.tar.gz
add new test file for hyperbolic function
git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@1060 280ebfd0-de03-0410-8827-d642c229c3f4
-rw-r--r--tests/tacosh.c99
-rw-r--r--tests/tasinh.c96
-rw-r--r--tests/tatanh.c96
-rw-r--r--tests/tcosh.c96
-rw-r--r--tests/tsinh.c96
-rw-r--r--tests/ttanh.c96
6 files changed, 579 insertions, 0 deletions
diff --git a/tests/tacosh.c b/tests/tacosh.c
new file mode 100644
index 000000000..68e6d1087
--- /dev/null
+++ b/tests/tacosh.c
@@ -0,0 +1,99 @@
+/* Test file for mpfr_acosh.
+
+Copyright (C) 2001 Free Software Foundation.
+Adapted from tarctan.c.
+
+This file is part of the MPFR Library.
+
+The MPFR Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Library General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at your
+option) any later version.
+
+The 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 Library General Public
+License for more details.
+
+You should have received a copy of the GNU Library General Public License
+along with the MPFR Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gmp.h>
+#include <mpfr.h>
+
+#define TEST_FUNCTION mpfr_acosh
+
+int
+main (int argc, char *argv[])
+{
+ unsigned int prec, err, yprec, n, p0 = 1, p1 = 100, N = 100;
+ mp_rnd_t rnd;
+ mpfr_t xt, x, y, z, t;
+
+ mpfr_init (x);
+ mpfr_init (xt);
+ mpfr_init (y);
+ mpfr_init (z);
+ mpfr_init (t);
+
+ /* tacosh prec - perform one random computation with precision prec */
+ if (argc >= 2)
+ {
+ p0 = p1 = atoi (argv[1]);
+ N = 1;
+ }
+
+ for (prec = p0; prec <= p1; prec++)
+ {
+ mpfr_set_prec (x, prec);
+ mpfr_set_prec (xt, prec);
+ mpfr_set_prec (z, prec);
+ mpfr_set_prec (t, prec);
+ yprec = prec + 10;
+
+ for (n=0; n<N; n++)
+ {
+
+ mpfr_random (xt);
+ mpfr_ui_div(x,1, xt, GMP_RNDU);
+ rnd = random () % 4;
+ mpfr_set_prec (y, yprec);
+ TEST_FUNCTION (y, x, rnd);
+ err = (rnd == GMP_RNDN) ? yprec + 1 : yprec;
+ if (mpfr_can_round (y, err, rnd, rnd, prec))
+ {
+ mpfr_set (t, y, rnd);
+ TEST_FUNCTION (z, x, rnd);
+ if (mpfr_cmp (t, z))
+ {
+ printf ("results differ for x=");
+ mpfr_out_str (stdout, 2, prec, x, GMP_RNDN);
+ printf (" prec=%u rnd_mode=%s\n", prec,
+ mpfr_print_rnd_mode (rnd));
+ printf (" got ");
+ mpfr_out_str (stdout, 2, prec, z, GMP_RNDN);
+ putchar ('\n');
+ printf (" expected ");
+ mpfr_out_str (stdout, 2, prec, t, GMP_RNDN);
+ putchar ('\n');
+ printf (" approximation was ");
+ mpfr_print_raw (y);
+ putchar ('\n');
+ exit (1);
+ }
+ }
+ }
+ }
+
+ mpfr_clear (x);
+ mpfr_clear (xt);
+ mpfr_clear (y);
+ mpfr_clear (z);
+ mpfr_clear (t);
+
+ return 0;
+}
diff --git a/tests/tasinh.c b/tests/tasinh.c
new file mode 100644
index 000000000..de1667a4c
--- /dev/null
+++ b/tests/tasinh.c
@@ -0,0 +1,96 @@
+/* Test file for mpfr_asinh.
+
+Copyright (C) 2001 Free Software Foundation.
+Adapted from tarctan.c.
+
+This file is part of the MPFR Library.
+
+The MPFR Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Library General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at your
+option) any later version.
+
+The 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 Library General Public
+License for more details.
+
+You should have received a copy of the GNU Library General Public License
+along with the MPFR Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gmp.h>
+#include <mpfr.h>
+
+#define TEST_FUNCTION mpfr_asinh
+
+int
+main (int argc, char *argv[])
+{
+ unsigned int prec, err, yprec, n, p0 = 1, p1 = 100, N = 100;
+ mp_rnd_t rnd;
+ mpfr_t x, y, z, t;
+
+ mpfr_init (x);
+ mpfr_init (y);
+ mpfr_init (z);
+ mpfr_init (t);
+
+ /* tasinh prec - perform one random computation with precision prec */
+ if (argc >= 2)
+ {
+ p0 = p1 = atoi (argv[1]);
+ N = 1;
+ }
+
+ for (prec = p0; prec <= p1; prec++)
+ {
+ mpfr_set_prec (x, prec);
+ mpfr_set_prec (z, prec);
+ mpfr_set_prec (t, prec);
+ yprec = prec + 10;
+
+ for (n=0; n<N; n++)
+ {
+ mpfr_random (x);
+ if (random() % 2)
+ mpfr_neg (x, x, GMP_RNDN);
+ rnd = random () % 4;
+ mpfr_set_prec (y, yprec);
+ TEST_FUNCTION (y, x, rnd);
+ err = (rnd == GMP_RNDN) ? yprec + 1 : yprec;
+ if (mpfr_can_round (y, err, rnd, rnd, prec))
+ {
+ mpfr_set (t, y, rnd);
+ TEST_FUNCTION (z, x, rnd);
+ if (mpfr_cmp (t, z))
+ {
+ printf ("results differ for x=");
+ mpfr_out_str (stdout, 10, prec, x, GMP_RNDN);
+ printf (" prec=%u rnd_mode=%s\n", prec,
+ mpfr_print_rnd_mode (rnd));
+ printf (" got ");
+ mpfr_out_str (stdout, 2, prec, z, GMP_RNDN);
+ putchar ('\n');
+ printf (" expected ");
+ mpfr_out_str (stdout, 2, prec, t, GMP_RNDN);
+ putchar ('\n');
+ printf (" approximation was ");
+ mpfr_print_raw (y);
+ putchar ('\n');
+ exit (1);
+ }
+ }
+ }
+ }
+
+ mpfr_clear (x);
+ mpfr_clear (y);
+ mpfr_clear (z);
+ mpfr_clear (t);
+
+ return 0;
+}
diff --git a/tests/tatanh.c b/tests/tatanh.c
new file mode 100644
index 000000000..537272e48
--- /dev/null
+++ b/tests/tatanh.c
@@ -0,0 +1,96 @@
+/* Test file for mpfr_atanh.
+
+Copyright (C) 2001 Free Software Foundation.
+Adapted from tarctan.c.
+
+This file is part of the MPFR Library.
+
+The MPFR Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Library General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at your
+option) any later version.
+
+The 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 Library General Public
+License for more details.
+
+You should have received a copy of the GNU Library General Public License
+along with the MPFR Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gmp.h>
+#include <mpfr.h>
+
+#define TEST_FUNCTION mpfr_atanh
+
+int
+main (int argc, char *argv[])
+{
+ unsigned int prec, yprec, n, p0 = 1, p1 = 100, N = 100;
+ mp_rnd_t rnd;
+ mpfr_t x, y, z, t;
+
+ mpfr_init (x);
+ mpfr_init (y);
+ mpfr_init (z);
+ mpfr_init (t);
+
+ /* tatanh prec - perform one random computation with precision prec */
+ if (argc >= 2)
+ {
+ p0 = p1 = atoi (argv[1]);
+ N = 1;
+
+ }
+
+ for (prec = p0; prec <= p1; prec++)
+ {
+ mpfr_set_prec (x, prec);
+ mpfr_set_prec (z, prec);
+ mpfr_set_prec (t, prec);
+ yprec = prec + 10;
+
+ for (n=0; n<N; n++)
+ {
+ mpfr_random (x);
+ if (random() % 2)
+ mpfr_neg (x, x, GMP_RNDZ);
+ rnd = random () % 4;
+ mpfr_set_prec (y, yprec);
+ TEST_FUNCTION (y, x, rnd);
+ if (mpfr_can_round (y, yprec, rnd, rnd, prec))
+ {
+ mpfr_set (t, y, rnd);
+ TEST_FUNCTION (z, x, rnd);
+ if (mpfr_cmp (t, z))
+ {
+ printf ("results differ for x=");
+ mpfr_out_str (stdout, 2,prec, x, GMP_RNDN);
+ printf (" prec=%u rnd_mode=%s\n", prec,
+ mpfr_print_rnd_mode (rnd));
+ printf (" got ");
+ mpfr_out_str (stdout, 2, prec, z, GMP_RNDN);
+ putchar ('\n');
+ printf (" expected ");
+ mpfr_out_str (stdout, 2, prec, t, GMP_RNDN);
+ putchar ('\n');
+ printf (" approximation was ");
+ mpfr_print_raw (y);
+ putchar ('\n');
+ exit (1);
+ }
+ }
+ }
+ }
+
+ mpfr_clear (x);
+ mpfr_clear (y);
+ mpfr_clear (z);
+ mpfr_clear (t);
+
+ return 0;
+}
diff --git a/tests/tcosh.c b/tests/tcosh.c
new file mode 100644
index 000000000..d34998d6b
--- /dev/null
+++ b/tests/tcosh.c
@@ -0,0 +1,96 @@
+/* Test file for mpfr_cosh.
+
+Copyright (C) 2001 Free Software Foundation.
+Adapted from tarctan.c.
+
+This file is part of the MPFR Library.
+
+The MPFR Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Library General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at your
+option) any later version.
+
+The 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 Library General Public
+License for more details.
+
+You should have received a copy of the GNU Library General Public License
+along with the MPFR Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gmp.h>
+#include <mpfr.h>
+
+#define TEST_FUNCTION mpfr_cosh
+
+int
+main (int argc, char *argv[])
+{
+ unsigned int prec, err, yprec, n, p0 = 1, p1 = 100, N = 100;
+ mp_rnd_t rnd;
+ mpfr_t x, y, z, t;
+
+ mpfr_init (x);
+ mpfr_init (y);
+ mpfr_init (z);
+ mpfr_init (t);
+
+ /* tcosh prec - perform one random computation with precision prec */
+ if (argc >= 2)
+ {
+ p0 = p1 = atoi (argv[1]);
+ N = 1;
+ }
+
+ for (prec = p0; prec <= p1; prec++)
+ {
+ mpfr_set_prec (x, prec);
+ mpfr_set_prec (z, prec);
+ mpfr_set_prec (t, prec);
+ yprec = prec + 10;
+
+ for (n=0; n<N; n++)
+ {
+ mpfr_random (x);
+ if (random() % 2)
+ mpfr_neg (x, x, GMP_RNDN);
+ rnd = random () % 4;
+ mpfr_set_prec (y, yprec);
+ TEST_FUNCTION (y, x, rnd);
+ err = (rnd == GMP_RNDN) ? yprec + 1 : yprec;
+ if (mpfr_can_round (y, err, rnd, rnd, prec))
+ {
+ mpfr_set (t, y, rnd);
+ TEST_FUNCTION (z, x, rnd);
+ if (mpfr_cmp (t, z))
+ {
+ printf ("results differ for x=");
+ mpfr_out_str (stdout, 2, prec, x, GMP_RNDN);
+ printf (" prec=%u rnd_mode=%s\n", prec,
+ mpfr_print_rnd_mode (rnd));
+ printf (" got ");
+ mpfr_out_str (stdout, 2, prec, z, GMP_RNDN);
+ putchar ('\n');
+ printf (" expected ");
+ mpfr_out_str (stdout, 2, prec, t, GMP_RNDN);
+ putchar ('\n');
+ printf (" approximation was ");
+ mpfr_print_raw (y);
+ putchar ('\n');
+ exit (1);
+ }
+ }
+ }
+ }
+
+ mpfr_clear (x);
+ mpfr_clear (y);
+ mpfr_clear (z);
+ mpfr_clear (t);
+
+ return 0;
+}
diff --git a/tests/tsinh.c b/tests/tsinh.c
new file mode 100644
index 000000000..adf6c96f5
--- /dev/null
+++ b/tests/tsinh.c
@@ -0,0 +1,96 @@
+/* Test file for mpfr_sinh.
+
+Copyright (C) 2001 Free Software Foundation.
+Adapted from tarctan.c.
+
+This file is part of the MPFR Library.
+
+The MPFR Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Library General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at your
+option) any later version.
+
+The 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 Library General Public
+License for more details.
+
+You should have received a copy of the GNU Library General Public License
+along with the MPFR Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gmp.h>
+#include <mpfr.h>
+
+#define TEST_FUNCTION mpfr_sinh
+
+int
+main (int argc, char *argv[])
+{
+ unsigned int prec, err, yprec, n, p0 = 1, p1 = 100, N = 100;
+ mp_rnd_t rnd;
+ mpfr_t x, y, z, t;
+
+ mpfr_init (x);
+ mpfr_init (y);
+ mpfr_init (z);
+ mpfr_init (t);
+
+ /* tsinh prec - perform one random computation with precision prec */
+ if (argc >= 2)
+ {
+ p0 = p1 = atoi (argv[1]);
+ N = 1;
+ }
+
+ for (prec = p0; prec <= p1; prec++)
+ {
+ mpfr_set_prec (x, prec);
+ mpfr_set_prec (z, prec);
+ mpfr_set_prec (t, prec);
+ yprec = prec + 10;
+
+ for (n=0; n<N; n++)
+ {
+ mpfr_random (x);
+ if (random() % 2)
+ mpfr_neg (x, x, GMP_RNDN);
+ rnd = random () % 4;
+ mpfr_set_prec (y, yprec);
+ TEST_FUNCTION (y, x, rnd);
+ err = (rnd == GMP_RNDN) ? yprec + 1 : yprec;
+ if (mpfr_can_round (y, err, rnd, rnd, prec))
+ {
+ mpfr_set (t, y, rnd);
+ TEST_FUNCTION (z, x, rnd);
+ if (mpfr_cmp (t, z))
+ {
+ printf ("results differ for x=");
+ mpfr_out_str (stdout, 2, prec, x, GMP_RNDN);
+ printf (" prec=%u rnd_mode=%s\n", prec,
+ mpfr_print_rnd_mode (rnd));
+ printf (" got ");
+ mpfr_out_str (stdout, 2, prec, z, GMP_RNDN);
+ putchar ('\n');
+ printf (" expected ");
+ mpfr_out_str (stdout, 2, prec, t, GMP_RNDN);
+ putchar ('\n');
+ printf (" approximation was ");
+ mpfr_print_raw (y);
+ putchar ('\n');
+ exit (1);
+ }
+ }
+ }
+ }
+
+ mpfr_clear (x);
+ mpfr_clear (y);
+ mpfr_clear (z);
+ mpfr_clear (t);
+
+ return 0;
+}
diff --git a/tests/ttanh.c b/tests/ttanh.c
new file mode 100644
index 000000000..1b82f208a
--- /dev/null
+++ b/tests/ttanh.c
@@ -0,0 +1,96 @@
+/* Test file for mpfr_tanh.
+
+Copyright (C) 2001 Free Software Foundation.
+Adapted from tarctan.c.
+
+This file is part of the MPFR Library.
+
+The MPFR Library is free software; you can redistribute it and/or modify
+it under the terms of the GNU Library General Public License as published by
+the Free Software Foundation; either version 2 of the License, or (at your
+option) any later version.
+
+The 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 Library General Public
+License for more details.
+
+You should have received a copy of the GNU Library General Public License
+along with the MPFR Library; see the file COPYING.LIB. If not, write to
+the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
+MA 02111-1307, USA. */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <gmp.h>
+#include <mpfr.h>
+
+#define TEST_FUNCTION mpfr_tanh
+
+int
+main (int argc, char *argv[])
+{
+ unsigned int prec, err, yprec, n, p0 = 1, p1 = 100, N = 100;
+ mp_rnd_t rnd;
+ mpfr_t x, y, z, t;
+
+ mpfr_init (x);
+ mpfr_init (y);
+ mpfr_init (z);
+ mpfr_init (t);
+
+ /* ttanh prec - perform one random computation with precision prec */
+ if (argc >= 2)
+ {
+ p0 = p1 = atoi (argv[1]);
+ N = 1;
+ }
+
+ for (prec = p0; prec <= p1; prec++)
+ {
+ mpfr_set_prec (x, prec);
+ mpfr_set_prec (z, prec);
+ mpfr_set_prec (t, prec);
+ yprec = prec + 10;
+
+ for (n=0; n<N; n++)
+ {
+ mpfr_random (x);
+ if (random() % 2)
+ mpfr_neg (x, x, GMP_RNDN);
+ rnd = random () % 4;
+ mpfr_set_prec (y, yprec);
+ TEST_FUNCTION (y, x, rnd);
+ err = (rnd == GMP_RNDN) ? yprec + 1 : yprec;
+ if (mpfr_can_round (y, err, rnd, rnd, prec))
+ {
+ mpfr_set (t, y, rnd);
+ TEST_FUNCTION (z, x, rnd);
+ if (mpfr_cmp (t, z))
+ {
+ printf ("results differ for x=");
+ mpfr_out_str (stdout, 2, prec, x, GMP_RNDN);
+ printf (" prec=%u rnd_mode=%s\n", prec,
+ mpfr_print_rnd_mode (rnd));
+ printf (" got ");
+ mpfr_out_str (stdout, 2, prec, z, GMP_RNDN);
+ putchar ('\n');
+ printf (" expected ");
+ mpfr_out_str (stdout, 2, prec, t, GMP_RNDN);
+ putchar ('\n');
+ printf (" approximation was ");
+ mpfr_print_raw (y);
+ putchar ('\n');
+ exit (1);
+ }
+ }
+ }
+ }
+
+ mpfr_clear (x);
+ mpfr_clear (y);
+ mpfr_clear (z);
+ mpfr_clear (t);
+
+ return 0;
+}