\frac{x}{y \cdot y} - 3\frac{1}{y \cdot \frac{y}{x}} - 3double f(double x, double y) {
double r219448 = x;
double r219449 = y;
double r219450 = r219449 * r219449;
double r219451 = r219448 / r219450;
double r219452 = 3.0;
double r219453 = r219451 - r219452;
return r219453;
}
double f(double x, double y) {
double r219454 = 1.0;
double r219455 = y;
double r219456 = x;
double r219457 = r219455 / r219456;
double r219458 = r219455 * r219457;
double r219459 = r219454 / r219458;
double r219460 = 3.0;
double r219461 = r219459 - r219460;
return r219461;
}




Bits error versus x




Bits error versus y
Results
| Original | 5.0 |
|---|---|
| Target | 0.1 |
| Herbie | 0.1 |
Initial program 5.0
rmApplied associate-/r*0.1
rmApplied *-un-lft-identity0.1
Applied *-un-lft-identity0.1
Applied times-frac0.1
Applied associate-/l*0.1
Simplified0.1
Final simplification0.1
herbie shell --seed 2019306
(FPCore (x y)
:name "Statistics.Sample:$skurtosis from math-functions-0.1.5.2"
:precision binary64
:herbie-target
(- (/ (/ x y) y) 3)
(- (/ x (* y y)) 3))