200 \cdot \left(x - y\right)
200 \cdot x + 200 \cdot \left(-y\right)
double f(double x, double y) {
double r296549 = 200.0;
double r296550 = x;
double r296551 = y;
double r296552 = r296550 - r296551;
double r296553 = r296549 * r296552;
return r296553;
}
double f(double x, double y) {
double r296554 = 200.0;
double r296555 = x;
double r296556 = r296554 * r296555;
double r296557 = y;
double r296558 = -r296557;
double r296559 = r296554 * r296558;
double r296560 = r296556 + r296559;
return r296560;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied add-sqr-sqrt0.9
Applied associate-*l*0.5
rmApplied sub-neg0.5
Applied distribute-lft-in0.5
Applied distribute-lft-in0.5
Simplified0.3
Simplified0.0
Final simplification0.0
herbie shell --seed 2020036
(FPCore (x y)
:name "Data.Colour.CIE:cieLABView from colour-2.3.3, C"
:precision binary64
(* 200 (- x y)))