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 -2.3254297716625307 \cdot 10^{-261} \lor \neg \left(x + \left(y - z\right) \cdot \frac{t - x}{a - z} \le 5.4302406239149995 \cdot 10^{-297}\right):\\
\;\;\;\;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{else}:\\
\;\;\;\;t + y \cdot \left(\frac{x}{z} - \frac{t}{z}\right)\\
\end{array}double code(double x, double y, double z, double t, double a) {
return (x + ((y - z) * ((t - x) / (a - z))));
}
double code(double x, double y, double z, double t, double a) {
double VAR;
if ((((x + ((y - z) * ((t - x) / (a - z)))) <= -2.3254297716625307e-261) || !((x + ((y - z) * ((t - x) / (a - z)))) <= 5.4302406239149995e-297))) {
VAR = (x + (((y - z) * ((cbrt((t - x)) * cbrt((t - x))) / (cbrt((a - z)) * cbrt((a - z))))) * (cbrt((t - x)) / cbrt((a - z)))));
} else {
VAR = (t + (y * ((x / z) - (t / z))));
}
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)))) < -2.3254297716625307e-261 or 5.4302406239149995e-297 < (+ x (* (- y z) (/ (- t x) (- a z)))) Initial program 6.9
rmApplied add-cube-cbrt7.7
Applied add-cube-cbrt7.8
Applied times-frac7.8
Applied associate-*r*4.4
if -2.3254297716625307e-261 < (+ x (* (- y z) (/ (- t x) (- a z)))) < 5.4302406239149995e-297Initial program 59.6
rmApplied add-cube-cbrt59.4
Applied add-cube-cbrt59.4
Applied times-frac59.4
Applied associate-*r*56.9
rmApplied add-cube-cbrt56.9
Applied associate-*r*57.0
Taylor expanded around inf 24.1
Simplified19.6
Final simplification6.6
herbie shell --seed 2020102
(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)))))