* tree-ssa-reassoc.c (reassociate_bb): Clarify code slighly.
[official-gcc.git] / libgo / go / math / acosh.go
blob97e84d01777f36883e8455fe4d3a78c7d22adffa
1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 package math
7 // The original C code, the long comment, and the constants
8 // below are from FreeBSD's /usr/src/lib/msun/src/e_acosh.c
9 // and came with this notice. The go code is a simplified
10 // version of the original C.
12 // ====================================================
13 // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
15 // Developed at SunPro, a Sun Microsystems, Inc. business.
16 // Permission to use, copy, modify, and distribute this
17 // software is freely granted, provided that this notice
18 // is preserved.
19 // ====================================================
22 // __ieee754_acosh(x)
23 // Method :
24 // Based on
25 // acosh(x) = log [ x + sqrt(x*x-1) ]
26 // we have
27 // acosh(x) := log(x)+ln2, if x is large; else
28 // acosh(x) := log(2x-1/(sqrt(x*x-1)+x)) if x>2; else
29 // acosh(x) := log1p(t+sqrt(2.0*t+t*t)); where t=x-1.
31 // Special cases:
32 // acosh(x) is NaN with signal if x<1.
33 // acosh(NaN) is NaN without signal.
36 // Acosh returns the inverse hyperbolic cosine of x.
38 // Special cases are:
39 // Acosh(+Inf) = +Inf
40 // Acosh(x) = NaN if x < 1
41 // Acosh(NaN) = NaN
42 func Acosh(x float64) float64 {
43 return libc_acosh(x)
46 //extern acosh
47 func libc_acosh(float64) float64
49 func acosh(x float64) float64 {
50 const (
51 Ln2 = 6.93147180559945286227e-01 // 0x3FE62E42FEFA39EF
52 Large = 1 << 28 // 2**28
54 // first case is special case
55 switch {
56 case x < 1 || IsNaN(x):
57 return NaN()
58 case x == 1:
59 return 0
60 case x >= Large:
61 return Log(x) + Ln2 // x > 2**28
62 case x > 2:
63 return Log(2*x - 1/(x+Sqrt(x*x-1))) // 2**28 > x > 2
65 t := x - 1
66 return Log1p(t + Sqrt(2*t+t*t)) // 2 >= x > 1