1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use super::exp;
use super::expm1;
use super::k_expo2;
#[inline]
#[cfg_attr(all(test, assert_no_panic), no_panic::no_panic)]
pub fn cosh(mut x: f64) -> f64 {
let mut ix = x.to_bits();
ix &= 0x7fffffffffffffff;
x = f64::from_bits(ix);
let w = ix >> 32;
if w < 0x3fe62e42 {
if w < 0x3ff00000 - (26 << 20) {
let x1p120 = f64::from_bits(0x4770000000000000);
force_eval!(x + x1p120);
return 1.;
}
let t = expm1(x);
return 1. + t * t / (2. * (1. + t));
}
if w < 0x40862e42 {
let t = exp(x);
return 0.5 * (t + 1. / t);
}
k_expo2(x)
}