x + \left(y - z\right) \cdot \frac{t - x}{a - z}\begin{array}{l}
\mathbf{if}\;x + \left(y - z\right) \cdot \frac{t - x}{a - z} \le -6.90605547983227213 \cdot 10^{-269}:\\
\;\;\;\;x + \left(\left(y - z\right) \cdot \frac{\sqrt[3]{t - x} \cdot \sqrt[3]{t - x}}{\sqrt[3]{a - z} \cdot \sqrt[3]{a - z}}\right) \cdot \frac{\sqrt[3]{t - x}}{\sqrt[3]{a - z}}\\
\mathbf{elif}\;x + \left(y - z\right) \cdot \frac{t - x}{a - z} \le 0.0:\\
\;\;\;\;t + y \cdot \left(\frac{x}{z} - \frac{t}{z}\right)\\
\mathbf{else}:\\
\;\;\;\;x + \frac{y - z}{a - z} \cdot \frac{1}{\frac{1}{t - x}}\\
\end{array}double code(double x, double y, double z, double t, double a) {
return ((double) (x + ((double) (((double) (y - z)) * ((double) (((double) (t - x)) / ((double) (a - z))))))));
}
double code(double x, double y, double z, double t, double a) {
double VAR;
if ((((double) (x + ((double) (((double) (y - z)) * ((double) (((double) (t - x)) / ((double) (a - z)))))))) <= -6.906055479832272e-269)) {
VAR = ((double) (x + ((double) (((double) (((double) (y - z)) * ((double) (((double) (((double) cbrt(((double) (t - x)))) * ((double) cbrt(((double) (t - x)))))) / ((double) (((double) cbrt(((double) (a - z)))) * ((double) cbrt(((double) (a - z)))))))))) * ((double) (((double) cbrt(((double) (t - x)))) / ((double) cbrt(((double) (a - z))))))))));
} else {
double VAR_1;
if ((((double) (x + ((double) (((double) (y - z)) * ((double) (((double) (t - x)) / ((double) (a - z)))))))) <= 0.0)) {
VAR_1 = ((double) (t + ((double) (y * ((double) (((double) (x / z)) - ((double) (t / z))))))));
} else {
VAR_1 = ((double) (x + ((double) (((double) (((double) (y - z)) / ((double) (a - z)))) * ((double) (1.0 / ((double) (1.0 / ((double) (t - x))))))))));
}
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
Results
if (+ x (* (- y z) (/ (- t x) (- a z)))) < -6.90605547983227213e-269Initial program 7.3
rmApplied add-cube-cbrt8.0
Applied add-cube-cbrt8.2
Applied times-frac8.2
Applied associate-*r*4.6
if -6.90605547983227213e-269 < (+ x (* (- y z) (/ (- t x) (- a z)))) < 0.0Initial program 60.2
rmApplied add-cube-cbrt59.8
Applied add-cube-cbrt59.9
Applied times-frac59.8
Applied associate-*r*58.1
Taylor expanded around inf 27.8
Simplified22.6
if 0.0 < (+ x (* (- y z) (/ (- t x) (- a z)))) Initial program 7.5
rmApplied clear-num7.8
rmApplied div-inv7.9
Applied *-un-lft-identity7.9
Applied times-frac7.6
Applied associate-*r*4.2
Simplified4.2
Final simplification7.0
herbie shell --seed 2020175
(FPCore (x y z t a)
:name "Numeric.Signal:interpolate from hsignal-0.2.7.1"
:precision binary64
(+ x (* (- y z) (/ (- t x) (- a z)))))