\cosh x \cdot \frac{\sin y}{y}\cosh x \cdot \frac{\sin y}{y}double f(double x, double y) {
double r591529 = x;
double r591530 = cosh(r591529);
double r591531 = y;
double r591532 = sin(r591531);
double r591533 = r591532 / r591531;
double r591534 = r591530 * r591533;
return r591534;
}
double f(double x, double y) {
double r591535 = x;
double r591536 = cosh(r591535);
double r591537 = y;
double r591538 = sin(r591537);
double r591539 = r591538 / r591537;
double r591540 = r591536 * r591539;
return r591540;
}




Bits error versus x




Bits error versus y
Results
| Original | 0.1 |
|---|---|
| Target | 0.1 |
| Herbie | 0.1 |
Initial program 0.1
Final simplification0.1
herbie shell --seed 2020001
(FPCore (x y)
:name "Linear.Quaternion:$csinh from linear-1.19.1.3"
:precision binary64
:herbie-target
(/ (* (cosh x) (sin y)) y)
(* (cosh x) (/ (sin y) y)))