200 \cdot \left(x - y\right)
200 \cdot x + 200 \cdot \left(-y\right)
double f(double x, double y) {
double r213898 = 200.0;
double r213899 = x;
double r213900 = y;
double r213901 = r213899 - r213900;
double r213902 = r213898 * r213901;
return r213902;
}
double f(double x, double y) {
double r213903 = 200.0;
double r213904 = x;
double r213905 = r213903 * r213904;
double r213906 = y;
double r213907 = -r213906;
double r213908 = r213903 * r213907;
double r213909 = r213905 + r213908;
return r213909;
}



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 +o rules:numerics
(FPCore (x y)
:name "Data.Colour.CIE:cieLABView from colour-2.3.3, C"
:precision binary64
(* 200 (- x y)))