\left(x \cdot 27\right) \cdot y
\left(x \cdot y\right) \cdot 27
double f(double x, double y) {
double r203961 = x;
double r203962 = 27.0;
double r203963 = r203961 * r203962;
double r203964 = y;
double r203965 = r203963 * r203964;
return r203965;
}
double f(double x, double y) {
double r203966 = x;
double r203967 = y;
double r203968 = r203966 * r203967;
double r203969 = 27.0;
double r203970 = r203968 * r203969;
return r203970;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.4
rmApplied associate-*l*0.3
Simplified0.3
rmApplied associate-*r*0.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))