\cosh x \cdot \frac{\sin y}{y}\frac{\cosh x \cdot \sin y}{y}double f(double x, double y) {
double r574252 = x;
double r574253 = cosh(r574252);
double r574254 = y;
double r574255 = sin(r574254);
double r574256 = r574255 / r574254;
double r574257 = r574253 * r574256;
return r574257;
}
double f(double x, double y) {
double r574258 = x;
double r574259 = cosh(r574258);
double r574260 = y;
double r574261 = sin(r574260);
double r574262 = r574259 * r574261;
double r574263 = r574262 / r574260;
return r574263;
}




Bits error versus x




Bits error versus y
Results
| Original | 0.2 |
|---|---|
| Target | 0.2 |
| Herbie | 0.2 |
Initial program 0.2
rmApplied associate-*r/0.2
Final simplification0.2
herbie shell --seed 2020027
(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)))