From e2748856b898f29b86815d34982ff34a452655e5 Mon Sep 17 00:00:00 2001 From: zimmerma Date: Wed, 25 Oct 2006 17:49:57 +0000 Subject: fixed overflow/underflow problems in csch and sech fixed problem for huge argument in coth git-svn-id: svn://scm.gforge.inria.fr/svn/mpfr/trunk@4161 280ebfd0-de03-0410-8827-d642c229c3f4 --- csch.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'csch.c') diff --git a/csch.c b/csch.c index e90bb0765..2129753b2 100644 --- a/csch.c +++ b/csch.c @@ -20,11 +20,11 @@ the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */ /* the hyperbolic cosecant is defined by csch(x) = 1/sinh(x). - csc (NaN) = NaN. - csc (+Inf) = 0+. - csc (-Inf) = 0-. - csc (+0) = +Inf. - csc (-0) = -Inf. + csch (NaN) = NaN. + csch (+Inf) = +0. + csch (-Inf) = -0. + csch (+0) = +Inf. + csch (-0) = -Inf. */ #define FUNCTION mpfr_csch -- cgit v1.2.1