x \cdot \frac{\sin y}{y}x \cdot \frac{\sin y}{y}double f(double x, double y) {
double r111031 = x;
double r111032 = y;
double r111033 = sin(r111032);
double r111034 = r111033 / r111032;
double r111035 = r111031 * r111034;
return r111035;
}
double f(double x, double y) {
double r111036 = x;
double r111037 = y;
double r111038 = sin(r111037);
double r111039 = r111038 / r111037;
double r111040 = r111036 * r111039;
return r111040;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.1
Final simplification0.1
herbie shell --seed 2020046
(FPCore (x y)
:name "Linear.Quaternion:$cexp from linear-1.19.1.3"
:precision binary64
(* x (/ (sin y) y)))