Average Error: 0.0 → 0.0
Time: 16.1s
Precision: 64
\[x \cdot e^{y \cdot y}\]
\[e^{y \cdot y} \cdot x\]
x \cdot e^{y \cdot y}
e^{y \cdot y} \cdot x
double f(double x, double y) {
        double r39673974 = x;
        double r39673975 = y;
        double r39673976 = r39673975 * r39673975;
        double r39673977 = exp(r39673976);
        double r39673978 = r39673974 * r39673977;
        return r39673978;
}

double f(double x, double y) {
        double r39673979 = y;
        double r39673980 = r39673979 * r39673979;
        double r39673981 = exp(r39673980);
        double r39673982 = x;
        double r39673983 = r39673981 * r39673982;
        return r39673983;
}

Error

Bits error versus x

Bits error versus y

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original0.0
Target0.0
Herbie0.0
\[x \cdot {\left(e^{y}\right)}^{y}\]

Derivation

  1. Initial program 0.0

    \[x \cdot e^{y \cdot y}\]
  2. Final simplification0.0

    \[\leadsto e^{y \cdot y} \cdot x\]

Reproduce

herbie shell --seed 2019164 
(FPCore (x y)
  :name "Data.Number.Erf:$dmerfcx from erf-2.0.0.0"

  :herbie-target
  (* x (pow (exp y) y))

  (* x (exp (* y y))))