\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}\;b \le -1.97114358953159718:\\
\;\;\;\;\mathsf{fma}\left(c \cdot t - i \cdot y, j, \left(x \cdot \mathsf{fma}\left(y, z, -a \cdot t\right) + x \cdot \mathsf{fma}\left(-a, t, a \cdot t\right)\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(c \cdot t - i \cdot y, j, x \cdot \left(y \cdot z - t \cdot a\right) - \left(z \cdot \left(b \cdot c\right) + \left(-a \cdot \left(i \cdot b\right)\right)\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 ((b <= -1.9711435895315972)) {
VAR = fma(((c * t) - (i * y)), j, (((x * fma(y, z, -(a * t))) + (x * fma(-a, t, (a * t)))) - (b * ((c * z) - (i * a)))));
} else {
VAR = fma(((c * t) - (i * y)), j, ((x * ((y * z) - (t * a))) - ((z * (b * c)) + -(a * (i * b)))));
}
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 b < -1.9711435895315972Initial program 7.0
Simplified7.0
rmApplied prod-diff7.0
Applied distribute-lft-in7.0
if -1.9711435895315972 < b Initial program 14.0
Simplified14.0
rmApplied add-cube-cbrt14.2
Applied associate-*l*14.2
rmApplied sub-neg14.2
Applied distribute-lft-in14.2
Applied distribute-lft-in14.2
Simplified13.1
Simplified11.5
Final simplification10.6
herbie shell --seed 2020102 +o rules:numerics
(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)))))