\cosh x \cdot \frac{\sin y}{y}\cosh x \cdot \frac{\sin y}{y}double f(double x, double y) {
double r753170 = x;
double r753171 = cosh(r753170);
double r753172 = y;
double r753173 = sin(r753172);
double r753174 = r753173 / r753172;
double r753175 = r753171 * r753174;
return r753175;
}
double f(double x, double y) {
double r753176 = x;
double r753177 = cosh(r753176);
double r753178 = y;
double r753179 = sin(r753178);
double r753180 = r753179 / r753178;
double r753181 = r753177 * r753180;
return r753181;
}




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 2019353
(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)))