x \cdot y - x
\mathsf{fma}\left(x, y, -x\right) + \left(x - x\right)double f(double x, double y) {
double r164261 = x;
double r164262 = y;
double r164263 = r164261 * r164262;
double r164264 = r164263 - r164261;
return r164264;
}
double f(double x, double y) {
double r164265 = x;
double r164266 = y;
double r164267 = -r164265;
double r164268 = fma(r164265, r164266, r164267);
double r164269 = r164265 - r164265;
double r164270 = r164268 + r164269;
return r164270;
}



Bits error versus x



Bits error versus y
Initial program 0.0
rmApplied add-cube-cbrt0.8
Applied prod-diff0.8
Simplified0.0
Simplified0
Final simplification0
herbie shell --seed 2019196 +o rules:numerics
(FPCore (x y)
:name "Data.Histogram.Bin.LogBinD:$cbinSizeN from histogram-fill-0.8.4.1"
(- (* x y) x))