\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)
\begin{array}{l}
\mathbf{if}\;x \le -7.3076781318223918 \cdot 10^{-190}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - \left(b \cdot \left(c \cdot z\right) + \left(-a \cdot \left(i \cdot b\right)\right)\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\mathbf{elif}\;x \le 3.1821747028115054 \cdot 10^{-179}:\\
\;\;\;\;\left(0 - \left(\left(b \cdot c\right) \cdot z + b \cdot \left(-i \cdot a\right)\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\mathbf{elif}\;x \le 2.561128999821832 \cdot 10^{-107}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - \left(b \cdot \left(c \cdot z\right) + \left(-a \cdot \left(i \cdot b\right)\right)\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\mathbf{elif}\;x \le 1.4683055985002132 \cdot 10^{-35}:\\
\;\;\;\;\left(0 - \left(\left(b \cdot c\right) \cdot z + b \cdot \left(-i \cdot a\right)\right)\right) + j \cdot \left(c \cdot t - i \cdot y\right)\\
\mathbf{else}:\\
\;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \left(\sqrt[3]{j} \cdot \sqrt[3]{j}\right) \cdot \left(\sqrt[3]{j} \cdot \left(c \cdot t - i \cdot y\right)\right)\\
\end{array}double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
return (((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + (j * ((c * t) - (i * y))));
}
double code(double x, double y, double z, double t, double a, double b, double c, double i, double j) {
double VAR;
if ((x <= -7.307678131822392e-190)) {
VAR = (((x * ((y * z) - (t * a))) - ((b * (c * z)) + -(a * (i * b)))) + (j * ((c * t) - (i * y))));
} else {
double VAR_1;
if ((x <= 3.1821747028115054e-179)) {
VAR_1 = ((0.0 - (((b * c) * z) + (b * -(i * a)))) + (j * ((c * t) - (i * y))));
} else {
double VAR_2;
if ((x <= 2.561128999821832e-107)) {
VAR_2 = (((x * ((y * z) - (t * a))) - ((b * (c * z)) + -(a * (i * b)))) + (j * ((c * t) - (i * y))));
} else {
double VAR_3;
if ((x <= 1.4683055985002132e-35)) {
VAR_3 = ((0.0 - (((b * c) * z) + (b * -(i * a)))) + (j * ((c * t) - (i * y))));
} else {
VAR_3 = (((x * ((y * z) - (t * a))) - (b * ((c * z) - (i * a)))) + ((cbrt(j) * cbrt(j)) * (cbrt(j) * ((c * t) - (i * 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



Bits error versus c



Bits error versus i



Bits error versus j
Results
if x < -7.307678131822392e-190 or 3.1821747028115054e-179 < x < 2.561128999821832e-107Initial program 10.8
rmApplied sub-neg10.8
Applied distribute-lft-in10.8
rmApplied distribute-rgt-neg-out10.8
Simplified11.1
if -7.307678131822392e-190 < x < 3.1821747028115054e-179 or 2.561128999821832e-107 < x < 1.4683055985002132e-35Initial program 15.7
rmApplied sub-neg15.7
Applied distribute-lft-in15.7
rmApplied associate-*r*16.1
Taylor expanded around 0 19.1
if 1.4683055985002132e-35 < x Initial program 8.0
rmApplied add-cube-cbrt8.3
Applied associate-*l*8.3
Final simplification13.1
herbie shell --seed 2020106
(FPCore (x y z t a b c i j)
:name "Linear.Matrix:det33 from linear-1.19.1.3"
:precision binary64
(+ (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a)))) (* j (- (* c t) (* i y)))))