1 /* origin: OpenBSD /usr/src/lib/libm/src/ld80/e_atanh.c */
3 * ====================================================
4 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
6 * Developed at SunPro, a Sun Microsystems, Inc. business.
7 * Permission to use, copy, modify, and distribute this
8 * software is freely granted, provided that this notice
10 * ====================================================
14 * 1.Reduced x to positive by atanh(-x) = -atanh(x)
17 * atanhl(x) = --- * log(1 + -------) = 0.5 * log1p(2 * --------)
21 * atanhl(x) = 0.5*log1pl(2x+2x*x/(1-x))
24 * atanhl(x) is NaN if |x| > 1 with signal;
25 * atanhl(NaN) is that NaN with no signal;
26 * atanhl(+-1) is +-INF with signal.
31 #if LDBL_MANT_DIG == 53 && LDBL_MAX_EXP == 1024
32 long double atanhl(long double x)
36 #elif LDBL_MANT_DIG == 64 && LDBL_MAX_EXP == 16384
37 static const long double huge = 1e4900L;
39 long double atanhl(long double x)
45 GET_LDOUBLE_WORDS(se, i0, i1, x);
47 if ((ix+((((i0&0x7fffffff)|i1)|(-((i0&0x7fffffff)|i1)))>>31)) > 0x3fff)
52 if (ix < 0x3fe3 && huge+x > 0.0) /* x < 2**-28 */
54 SET_LDOUBLE_EXP(x, ix);
55 if (ix < 0x3ffe) { /* x < 0.5 */
57 t = 0.5*log1pl(t + t*x/(1.0 - x));
59 t = 0.5*log1pl((x + x)/(1.0 - x));