\frac{\left(\left(x + y\right) \cdot z + \left(t + y\right) \cdot a\right) - y \cdot b}{\left(x + t\right) + y}\begin{array}{l}
\mathbf{if}\;x \le -3.765916646306446 \cdot 10^{102}:\\
\;\;\;\;z - y \cdot \frac{b}{\left(x + t\right) + y}\\
\mathbf{elif}\;x \le -2.72919725164923495 \cdot 10^{-211}:\\
\;\;\;\;\frac{\left(x + y\right) \cdot z + \left(t + y\right) \cdot a}{\left(x + t\right) + y} - \frac{y}{\left(x + t\right) + y} \cdot b\\
\mathbf{elif}\;x \le 9.59016799206003869 \cdot 10^{-203}:\\
\;\;\;\;a - \frac{y}{\frac{\left(x + t\right) + y}{b}}\\
\mathbf{elif}\;x \le 3.1135092197043987 \cdot 10^{143}:\\
\;\;\;\;\frac{\left(x + y\right) \cdot z + \left(t + y\right) \cdot a}{\left(x + t\right) + y} - \frac{y}{\left(x + t\right) + y} \cdot b\\
\mathbf{else}:\\
\;\;\;\;z - y \cdot \frac{b}{\left(x + t\right) + y}\\
\end{array}double code(double x, double y, double z, double t, double a, double b) {
return ((double) (((double) (((double) (((double) (((double) (x + y)) * z)) + ((double) (((double) (t + y)) * a)))) - ((double) (y * b)))) / ((double) (((double) (x + t)) + y))));
}
double code(double x, double y, double z, double t, double a, double b) {
double VAR;
if ((x <= -3.7659166463064465e+102)) {
VAR = ((double) (z - ((double) (y * ((double) (b / ((double) (((double) (x + t)) + y))))))));
} else {
double VAR_1;
if ((x <= -2.729197251649235e-211)) {
VAR_1 = ((double) (((double) (((double) (((double) (((double) (x + y)) * z)) + ((double) (((double) (t + y)) * a)))) / ((double) (((double) (x + t)) + y)))) - ((double) (((double) (y / ((double) (((double) (x + t)) + y)))) * b))));
} else {
double VAR_2;
if ((x <= 9.590167992060039e-203)) {
VAR_2 = ((double) (a - ((double) (y / ((double) (((double) (((double) (x + t)) + y)) / b))))));
} else {
double VAR_3;
if ((x <= 3.1135092197043987e+143)) {
VAR_3 = ((double) (((double) (((double) (((double) (((double) (x + y)) * z)) + ((double) (((double) (t + y)) * a)))) / ((double) (((double) (x + t)) + y)))) - ((double) (((double) (y / ((double) (((double) (x + t)) + y)))) * b))));
} else {
VAR_3 = ((double) (z - ((double) (y * ((double) (b / ((double) (((double) (x + t)) + y))))))));
}
VAR_2 = VAR_3;
}
VAR_1 = VAR_2;
}
VAR = VAR_1;
}
return VAR;
}




Bits error versus x




Bits error versus y




Bits error versus z




Bits error versus t




Bits error versus a




Bits error versus b
Results
| Original | 26.5 |
|---|---|
| Target | 11.2 |
| Herbie | 20.4 |
if x < -3.7659166463064465e+102 or 3.1135092197043987e+143 < x Initial program 33.9
rmApplied div-sub33.9
rmApplied *-un-lft-identity33.9
Applied times-frac31.3
Simplified31.3
Taylor expanded around inf 21.2
if -3.7659166463064465e+102 < x < -2.729197251649235e-211 or 9.590167992060039e-203 < x < 3.1135092197043987e+143Initial program 23.2
rmApplied div-sub23.2
rmApplied associate-/l*21.3
rmApplied associate-/r/20.3
if -2.729197251649235e-211 < x < 9.590167992060039e-203Initial program 23.3
rmApplied div-sub23.3
rmApplied associate-/l*21.6
Taylor expanded around 0 19.5
Final simplification20.4
herbie shell --seed 2020120
(FPCore (x y z t a b)
:name "AI.Clustering.Hierarchical.Internal:ward from clustering-0.2.1"
:precision binary64
:herbie-target
(if (< (/ (- (+ (* (+ x y) z) (* (+ t y) a)) (* y b)) (+ (+ x t) y)) -3.5813117084150564e+153) (- (+ z a) b) (if (< (/ (- (+ (* (+ x y) z) (* (+ t y) a)) (* y b)) (+ (+ x t) y)) 1.2285964308315609e+82) (/ 1 (/ (+ (+ x t) y) (- (+ (* (+ x y) z) (* (+ t y) a)) (* y b)))) (- (+ z a) b)))
(/ (- (+ (* (+ x y) z) (* (+ t y) a)) (* y b)) (+ (+ x t) y)))