summaryrefslogtreecommitdiff
path: root/csch.c
diff options
context:
space:
mode:
authorzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2006-10-25 17:49:57 +0000
committerzimmerma <zimmerma@280ebfd0-de03-0410-8827-d642c229c3f4>2006-10-25 17:49:57 +0000
commite2748856b898f29b86815d34982ff34a452655e5 (patch)
tree5d0c8301758d9fc0f4c56edd77a0135086c02afa /csch.c
parent8e11845df8d98488067a7a612573b2fd1ff8cd9b (diff)
downloadmpfr-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.c10
1 files changed, 5 insertions, 5 deletions
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