\cosh x \cdot \frac{\sin y}{y}\cosh x \cdot \frac{\sin y}{y}double f(double x, double y) {
double r644933 = x;
double r644934 = cosh(r644933);
double r644935 = y;
double r644936 = sin(r644935);
double r644937 = r644936 / r644935;
double r644938 = r644934 * r644937;
return r644938;
}
double f(double x, double y) {
double r644939 = x;
double r644940 = cosh(r644939);
double r644941 = y;
double r644942 = sin(r644941);
double r644943 = r644942 / r644941;
double r644944 = r644940 * r644943;
return r644944;
}




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