x \cdot y - x
\mathsf{fma}\left(x, y, -x\right)double f(double x, double y) {
double r153136 = x;
double r153137 = y;
double r153138 = r153136 * r153137;
double r153139 = r153138 - r153136;
return r153139;
}
double f(double x, double y) {
double r153140 = x;
double r153141 = y;
double r153142 = -r153140;
double r153143 = fma(r153140, r153141, r153142);
return r153143;
}



Bits error versus x



Bits error versus y
Initial program 0.0
rmApplied fma-neg0
Final simplification0
herbie shell --seed 2019199 +o rules:numerics
(FPCore (x y)
:name "Data.Histogram.Bin.LogBinD:$cbinSizeN from histogram-fill-0.8.4.1"
(- (* x y) x))