\left(x \cdot 27\right) \cdot y
27 \cdot \left(x \cdot y\right)
double f(double x, double y) {
double r132136 = x;
double r132137 = 27.0;
double r132138 = r132136 * r132137;
double r132139 = y;
double r132140 = r132138 * r132139;
return r132140;
}
double f(double x, double y) {
double r132141 = 27.0;
double r132142 = x;
double r132143 = y;
double r132144 = r132142 * r132143;
double r132145 = r132141 * r132144;
return r132145;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.3
rmApplied pow10.3
Applied pow10.3
Applied pow10.3
Applied pow-prod-down0.3
Applied pow-prod-down0.3
Simplified0.3
Final simplification0.3
herbie shell --seed 2019322 +o rules:numerics
(FPCore (x y)
:name "Diagrams.Solve.Polynomial:cubForm from diagrams-solve-0.1, F"
:precision binary64
(* (* x 27) y))