\cosh x \cdot \frac{\sin y}{y}\frac{\sin y \cdot \cosh x}{y}double f(double x, double y) {
double r35656230 = x;
double r35656231 = cosh(r35656230);
double r35656232 = y;
double r35656233 = sin(r35656232);
double r35656234 = r35656233 / r35656232;
double r35656235 = r35656231 * r35656234;
return r35656235;
}
double f(double x, double y) {
double r35656236 = y;
double r35656237 = sin(r35656236);
double r35656238 = x;
double r35656239 = cosh(r35656238);
double r35656240 = r35656237 * r35656239;
double r35656241 = r35656240 / r35656236;
return r35656241;
}




Bits error versus x




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