e^{\left(x + y \cdot \log y\right) - z}e^{\left(\log y \cdot y + x\right) - z}double f(double x, double y, double z) {
double r17664095 = x;
double r17664096 = y;
double r17664097 = log(r17664096);
double r17664098 = r17664096 * r17664097;
double r17664099 = r17664095 + r17664098;
double r17664100 = z;
double r17664101 = r17664099 - r17664100;
double r17664102 = exp(r17664101);
return r17664102;
}
double f(double x, double y, double z) {
double r17664103 = y;
double r17664104 = log(r17664103);
double r17664105 = r17664104 * r17664103;
double r17664106 = x;
double r17664107 = r17664105 + r17664106;
double r17664108 = z;
double r17664109 = r17664107 - r17664108;
double r17664110 = exp(r17664109);
return r17664110;
}




Bits error versus x




Bits error versus y




Bits error versus z
Results
| Original | 0.0 |
|---|---|
| Target | 0.0 |
| Herbie | 0.0 |
Initial program 0.0
Final simplification0.0
herbie shell --seed 2019179
(FPCore (x y z)
:name "Statistics.Distribution.Poisson.Internal:probability from math-functions-0.1.5.2"
:herbie-target
(exp (+ (- x z) (* (log y) y)))
(exp (- (+ x (* y (log y))) z)))