\left(x \cdot 27\right) \cdot y
27 \cdot \left(x \cdot y\right)
double f(double x, double y) {
double r126336 = x;
double r126337 = 27.0;
double r126338 = r126336 * r126337;
double r126339 = y;
double r126340 = r126338 * r126339;
return r126340;
}
double f(double x, double y) {
double r126341 = 27.0;
double r126342 = x;
double r126343 = y;
double r126344 = r126342 * r126343;
double r126345 = r126341 * r126344;
return r126345;
}



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 2019199 +o rules:numerics
(FPCore (x y)
:name "Diagrams.Solve.Polynomial:cubForm from diagrams-solve-0.1, F"
(* (* x 27.0) y))