OLD | NEW |
1 // Copyright 2010 The Go Authors. All rights reserved. | 1 // Copyright 2010 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 package math | 5 package math |
6 | 6 |
7 | |
8 // The original C code, the long comment, and the constants | 7 // The original C code, the long comment, and the constants |
9 // below are from FreeBSD's /usr/src/lib/msun/src/e_acosh.c | 8 // below are from FreeBSD's /usr/src/lib/msun/src/e_acosh.c |
10 // and came with this notice. The go code is a simplified | 9 // and came with this notice. The go code is a simplified |
11 // version of the original C. | 10 // version of the original C. |
12 // | 11 // |
13 // ==================================================== | 12 // ==================================================== |
14 // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. | 13 // Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. |
15 // | 14 // |
16 // Developed at SunPro, a Sun Microsystems, Inc. business. | 15 // Developed at SunPro, a Sun Microsystems, Inc. business. |
17 // Permission to use, copy, modify, and distribute this | 16 // Permission to use, copy, modify, and distribute this |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 case x == 1: | 52 case x == 1: |
54 return 0 | 53 return 0 |
55 case x >= Large: | 54 case x >= Large: |
56 return Log(x) + Ln2 // x > 2**28 | 55 return Log(x) + Ln2 // x > 2**28 |
57 case x > 2: | 56 case x > 2: |
58 return Log(2*x - 1/(x+Sqrt(x*x-1))) // 2**28 > x > 2 | 57 return Log(2*x - 1/(x+Sqrt(x*x-1))) // 2**28 > x > 2 |
59 } | 58 } |
60 t := x - 1 | 59 t := x - 1 |
61 return Log1p(t + Sqrt(2*t+t*t)) // 2 >= x > 1 | 60 return Log1p(t + Sqrt(2*t+t*t)) // 2 >= x > 1 |
62 } | 61 } |
OLD | NEW |