x \cdot \frac{\sin y}{y}x \cdot \frac{\sin y}{y}double f(double x, double y) {
double r151674 = x;
double r151675 = y;
double r151676 = sin(r151675);
double r151677 = r151676 / r151675;
double r151678 = r151674 * r151677;
return r151678;
}
double f(double x, double y) {
double r151679 = x;
double r151680 = y;
double r151681 = sin(r151680);
double r151682 = r151681 / r151680;
double r151683 = r151679 * r151682;
return r151683;
}



Bits error versus x



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