e^{\left(x \cdot y\right) \cdot y}e^{x \cdot \left(y \cdot y\right)}double f(double x, double y) {
double r12106678 = x;
double r12106679 = y;
double r12106680 = r12106678 * r12106679;
double r12106681 = r12106680 * r12106679;
double r12106682 = exp(r12106681);
return r12106682;
}
double f(double x, double y) {
double r12106683 = x;
double r12106684 = y;
double r12106685 = r12106684 * r12106684;
double r12106686 = r12106683 * r12106685;
double r12106687 = exp(r12106686);
return r12106687;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied add-exp-log0.0
Simplified0.0
Final simplification0.0
herbie shell --seed 2019169
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
(exp (* (* x y) y)))