\left(x \cdot 27\right) \cdot y
27 \cdot \left(x \cdot y\right)
double f(double x, double y) {
double r208170 = x;
double r208171 = 27.0;
double r208172 = r208170 * r208171;
double r208173 = y;
double r208174 = r208172 * r208173;
return r208174;
}
double f(double x, double y) {
double r208175 = 27.0;
double r208176 = x;
double r208177 = y;
double r208178 = r208176 * r208177;
double r208179 = r208175 * r208178;
return r208179;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.4
rmApplied associate-*l*0.3
rmApplied *-un-lft-identity0.3
Applied associate-*l*0.3
Simplified0.3
Final simplification0.3
herbie shell --seed 2020045 +o rules:numerics
(FPCore (x y)
:name "Diagrams.Solve.Polynomial:cubForm from diagrams-solve-0.1, F"
:precision binary64
(* (* x 27) y))