\frac{\sin x \cdot \sinh y}{x}\sin x \cdot \frac{\sinh y}{x}double f(double x, double y) {
double r34133941 = x;
double r34133942 = sin(r34133941);
double r34133943 = y;
double r34133944 = sinh(r34133943);
double r34133945 = r34133942 * r34133944;
double r34133946 = r34133945 / r34133941;
return r34133946;
}
double f(double x, double y) {
double r34133947 = x;
double r34133948 = sin(r34133947);
double r34133949 = y;
double r34133950 = sinh(r34133949);
double r34133951 = r34133950 / r34133947;
double r34133952 = r34133948 * r34133951;
return r34133952;
}




Bits error versus x




Bits error versus y
Results
| Original | 14.0 |
|---|---|
| Target | 0.2 |
| Herbie | 0.2 |
Initial program 14.0
rmApplied *-un-lft-identity14.0
Applied times-frac0.2
Simplified0.2
Final simplification0.2
herbie shell --seed 2019171
(FPCore (x y)
:name "Linear.Quaternion:$ccosh from linear-1.19.1.3"
:herbie-target
(* (sin x) (/ (sinh y) x))
(/ (* (sin x) (sinh y)) x))