e^{\left(x \cdot y\right) \cdot y}e^{\left(x \cdot y\right) \cdot y}double f(double x, double y) {
double r1178 = x;
double r1179 = y;
double r1180 = r1178 * r1179;
double r1181 = r1180 * r1179;
double r1182 = exp(r1181);
return r1182;
}
double f(double x, double y) {
double r1183 = x;
double r1184 = y;
double r1185 = r1183 * r1184;
double r1186 = r1185 * r1184;
double r1187 = exp(r1186);
return r1187;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
Final simplification0.0
herbie shell --seed 2020025 +o rules:numerics
(FPCore (x y)
:name "Data.Random.Distribution.Normal:normalF from random-fu-0.2.6.2"
:precision binary64
(exp (* (* x y) y)))