diff options
author | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2006-10-25 17:49:57 +0000 |
---|---|---|
committer | zimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4> | 2006-10-25 17:49:57 +0000 |
commit | e2748856b898f29b86815d34982ff34a452655e5 (patch) | |
tree | 5d0c8301758d9fc0f4c56edd77a0135086c02afa /csch.c | |
parent | 8e11845df8d98488067a7a612573b2fd1ff8cd9b (diff) | |
download | mpfr-e2748856b898f29b86815d34982ff34a452655e5.tar.gz |
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
Diffstat (limited to 'csch.c')
-rw-r--r-- | csch.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 |