x + \left(y - z\right) \cdot \frac{t - x}{a - z}\begin{array}{l}
\mathbf{if}\;a \le -8.17231113071196504 \cdot 10^{-79} \lor \neg \left(a \le 2.7380745442269558 \cdot 10^{-123}\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 ((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 (((a <= -8.172311130711965e-79) || !(a <= 2.7380745442269558e-123))) {
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 {
VAR = ((double) (t + ((double) (y * ((double) (((double) (x / z)) - ((double) (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 a < -8.172311130711965e-79 or 2.7380745442269558e-123 < a Initial program 10.6
rmApplied add-cube-cbrt11.1
Applied add-cube-cbrt11.2
Applied times-frac11.2
Applied associate-*r*8.9
if -8.172311130711965e-79 < a < 2.7380745442269558e-123Initial program 23.8
rmApplied add-cube-cbrt24.5
Applied add-cube-cbrt24.7
Applied times-frac24.7
Applied associate-*r*19.0
rmApplied add-cube-cbrt19.2
Applied associate-*r*19.2
Taylor expanded around inf 16.0
Simplified13.5
Final simplification10.3
herbie shell --seed 2020140
(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)))))