e_acoshl.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /* @(#)e_acosh.c 5.1 93/09/24 */
  2. /*
  3. * ====================================================
  4. * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
  5. *
  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
  9. * is preserved.
  10. * ====================================================
  11. */
  12. /* acoshl(x)
  13. * Method :
  14. * Based on
  15. * acoshl(x) = logl [ x + sqrtl(x*x-1) ]
  16. * we have
  17. * acoshl(x) := logl(x)+ln2, if x is large; else
  18. * acoshl(x) := logl(2x-1/(sqrtl(x*x-1)+x)) if x>2; else
  19. * acoshl(x) := log1pl(t+sqrtl(2.0*t+t*t)); where t=x-1.
  20. *
  21. * Special cases:
  22. * acoshl(x) is NaN with signal if x<1.
  23. * acoshl(NaN) is NaN without signal.
  24. */
  25. #include <openlibm_math.h>
  26. #include "math_private.h"
  27. static const long double
  28. one = 1.0,
  29. ln2 = 0.6931471805599453094172321214581766L;
  30. long double
  31. acoshl(long double x)
  32. {
  33. long double t;
  34. u_int64_t lx;
  35. int64_t hx;
  36. GET_LDOUBLE_WORDS64(hx,lx,x);
  37. if(hx<0x3fff000000000000LL) { /* x < 1 */
  38. return (x-x)/(x-x);
  39. } else if(hx >=0x4035000000000000LL) { /* x > 2**54 */
  40. if(hx >=0x7fff000000000000LL) { /* x is inf of NaN */
  41. return x+x;
  42. } else
  43. return logl(x)+ln2; /* acoshl(huge)=logl(2x) */
  44. } else if(((hx-0x3fff000000000000LL)|lx)==0) {
  45. return 0.0L; /* acosh(1) = 0 */
  46. } else if (hx > 0x4000000000000000LL) { /* 2**28 > x > 2 */
  47. t=x*x;
  48. return logl(2.0L*x-one/(x+sqrtl(t-one)));
  49. } else { /* 1<x<2 */
  50. t = x-one;
  51. return log1pl(t+sqrtl(2.0L*t+t*t));
  52. }
  53. }