x \cdot y - x
x \cdot \left(y - 1\right)
double f(double x, double y) {
double r207305 = x;
double r207306 = y;
double r207307 = r207305 * r207306;
double r207308 = r207307 - r207305;
return r207308;
}
double f(double x, double y) {
double r207309 = x;
double r207310 = y;
double r207311 = 1.0;
double r207312 = r207310 - r207311;
double r207313 = r207309 * r207312;
return r207313;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied flip--28.1
Simplified30.4
rmApplied *-un-lft-identity30.4
Applied times-frac9.0
Simplified9.0
Taylor expanded around 0 0.0
Final simplification0.0
herbie shell --seed 2019209
(FPCore (x y)
:name "Data.Histogram.Bin.LogBinD:$cbinSizeN from histogram-fill-0.8.4.1"
:precision binary64
(- (* x y) x))