e^{\left(x \cdot y\right) \cdot y}\mathsf{log1p}\left(\mathsf{expm1}\left(e^{\left(x \cdot y\right) \cdot y}\right)\right)double f(double x, double y) {
double r184496 = x;
double r184497 = y;
double r184498 = r184496 * r184497;
double r184499 = r184498 * r184497;
double r184500 = exp(r184499);
return r184500;
}
double f(double x, double y) {
double r184501 = x;
double r184502 = y;
double r184503 = r184501 * r184502;
double r184504 = r184503 * r184502;
double r184505 = exp(r184504);
double r184506 = expm1(r184505);
double r184507 = log1p(r184506);
return r184507;
}



Bits error versus x



Bits error versus y
Results
Initial program 0.0
rmApplied log1p-expm1-u0.1
Final simplification0.1
herbie shell --seed 2020046 +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)))