/* Test file for mpfr_tan. Copyright (C) 2001 Free Software Foundation, Inc. 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 #include #include "gmp.h" #include "mpfr.h" void check53 _PROTO ((double, double, mp_rnd_t)); void check53 (double x, double tan_x, mp_rnd_t rnd_mode) { mpfr_t xx, s; mpfr_init2 (xx, 53); mpfr_init2 (s, 53); mpfr_set_d (xx, x, rnd_mode); /* should be exact */ mpfr_tan (s, xx, rnd_mode); if (mpfr_get_d (s) != tan_x && (!isnan(tan_x) || !isnan(mpfr_get_d(s)))) { fprintf (stderr, "mpfr_tan failed for x=%1.20e, rnd=%s\n", x, mpfr_print_rnd_mode (rnd_mode)); fprintf (stderr, "mpfr_tan gives tan(x)=%1.20e, expected %1.20e\n", mpfr_get_d (s), tan_x); exit(1); } mpfr_clear (xx); mpfr_clear (s); } #define TEST_FUNCTION mpfr_tan #include "tgeneric.c" int main(int argc, char *argv[]) { mpfr_t x; check53(0.0/0.0, 0.0/0.0, GMP_RNDN); check53(1.0/0.0, 0.0/0.0, GMP_RNDN); check53(-1.0/0.0, 0.0/0.0, GMP_RNDN); mpfr_init (x); mpfr_set_prec (x, 1); mpfr_set_d (x, 0.5, GMP_RNDN); mpfr_tan (x, x, GMP_RNDD); if (mpfr_get_d(x) != 0.50) { fprintf (stderr, "mpfr_tan(0.5, GMP_RNDD) failed\n"); exit (1); } mpfr_clear (x); test_generic (1, 100, 100); return 0; }