\frac{x + y}{10}\frac{y}{10} + \frac{x}{10}double f(double x, double y) {
double r1349040 = x;
double r1349041 = y;
double r1349042 = r1349040 + r1349041;
double r1349043 = 10.0;
double r1349044 = r1349042 / r1349043;
return r1349044;
}
double f(double x, double y) {
double r1349045 = y;
double r1349046 = 10.0;
double r1349047 = r1349045 / r1349046;
double r1349048 = x;
double r1349049 = r1349048 / r1349046;
double r1349050 = r1349047 + r1349049;
return r1349050;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied clear-num0.3
rmApplied *-un-lft-identity0.3
Applied add-sqr-sqrt1.0
Applied times-frac0.7
Applied associate-/r*0.3
Simplified0.3
Taylor expanded around 0 1.1
Simplified0.0
Final simplification0.0
herbie shell --seed 2019174
(FPCore (x y)
:name "Text.Parsec.Token:makeTokenParser from parsec-3.1.9, A"
(/ (+ x y) 10.0))