Math FPCore C Julia Wolfram TeX \[\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}
t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_3 := \left(t_1 - b \cdot \left(z \cdot c - a \cdot i\right)\right) + t_2\\
\mathbf{if}\;t_3 \leq -\infty \lor \neg \left(t_3 \leq 2 \cdot 10^{+303}\right):\\
\;\;\;\;\left(t_1 + c \cdot \left(t \cdot j - z \cdot b\right)\right) + i \cdot \left(a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;t_2 + \left(\mathsf{fma}\left(x, \mathsf{fma}\left(z, y, t \cdot \left(-a\right)\right), \mathsf{fma}\left(-a, t, t \cdot a\right) \cdot \left(x + x\right)\right) + b \cdot \left(a \cdot i - z \cdot c\right)\right)\\
\end{array}
\]
(FPCore (x y z t a b c i j)
:precision binary64
(+
(- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a))))
(* j (- (* c t) (* i y))))) ↓
(FPCore (x y z t a b c i j)
:precision binary64
(let* ((t_1 (* x (- (* y z) (* t a))))
(t_2 (* j (- (* t c) (* y i))))
(t_3 (+ (- t_1 (* b (- (* z c) (* a i)))) t_2)))
(if (or (<= t_3 (- INFINITY)) (not (<= t_3 2e+303)))
(+ (+ t_1 (* c (- (* t j) (* z b)))) (* i (* a b)))
(+
t_2
(+
(fma x (fma z y (* t (- a))) (* (fma (- a) t (* t a)) (+ x x)))
(* b (- (* a i) (* z c)))))))) 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 t_1 = x * ((y * z) - (t * a));
double t_2 = j * ((t * c) - (y * i));
double t_3 = (t_1 - (b * ((z * c) - (a * i)))) + t_2;
double tmp;
if ((t_3 <= -((double) INFINITY)) || !(t_3 <= 2e+303)) {
tmp = (t_1 + (c * ((t * j) - (z * b)))) + (i * (a * b));
} else {
tmp = t_2 + (fma(x, fma(z, y, (t * -a)), (fma(-a, t, (t * a)) * (x + x))) + (b * ((a * i) - (z * c))));
}
return tmp;
}
function code(x, y, z, t, a, b, c, i, j)
return Float64(Float64(Float64(x * Float64(Float64(y * z) - Float64(t * a))) - Float64(b * Float64(Float64(c * z) - Float64(i * a)))) + Float64(j * Float64(Float64(c * t) - Float64(i * y))))
end
↓
function code(x, y, z, t, a, b, c, i, j)
t_1 = Float64(x * Float64(Float64(y * z) - Float64(t * a)))
t_2 = Float64(j * Float64(Float64(t * c) - Float64(y * i)))
t_3 = Float64(Float64(t_1 - Float64(b * Float64(Float64(z * c) - Float64(a * i)))) + t_2)
tmp = 0.0
if ((t_3 <= Float64(-Inf)) || !(t_3 <= 2e+303))
tmp = Float64(Float64(t_1 + Float64(c * Float64(Float64(t * j) - Float64(z * b)))) + Float64(i * Float64(a * b)));
else
tmp = Float64(t_2 + Float64(fma(x, fma(z, y, Float64(t * Float64(-a))), Float64(fma(Float64(-a), t, Float64(t * a)) * Float64(x + x))) + Float64(b * Float64(Float64(a * i) - Float64(z * c)))));
end
return tmp
end
code[x_, y_, z_, t_, a_, b_, c_, i_, j_] := N[(N[(N[(x * N[(N[(y * z), $MachinePrecision] - N[(t * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(b * N[(N[(c * z), $MachinePrecision] - N[(i * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(j * N[(N[(c * t), $MachinePrecision] - N[(i * y), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_, z_, t_, a_, b_, c_, i_, j_] := Block[{t$95$1 = N[(x * N[(N[(y * z), $MachinePrecision] - N[(t * a), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(j * N[(N[(t * c), $MachinePrecision] - N[(y * i), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$3 = N[(N[(t$95$1 - N[(b * N[(N[(z * c), $MachinePrecision] - N[(a * i), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + t$95$2), $MachinePrecision]}, If[Or[LessEqual[t$95$3, (-Infinity)], N[Not[LessEqual[t$95$3, 2e+303]], $MachinePrecision]], N[(N[(t$95$1 + N[(c * N[(N[(t * j), $MachinePrecision] - N[(z * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(i * N[(a * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(t$95$2 + N[(N[(x * N[(z * y + N[(t * (-a)), $MachinePrecision]), $MachinePrecision] + N[(N[((-a) * t + N[(t * a), $MachinePrecision]), $MachinePrecision] * N[(x + x), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(b * N[(N[(a * i), $MachinePrecision] - N[(z * c), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]]]]
\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}
t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_3 := \left(t_1 - b \cdot \left(z \cdot c - a \cdot i\right)\right) + t_2\\
\mathbf{if}\;t_3 \leq -\infty \lor \neg \left(t_3 \leq 2 \cdot 10^{+303}\right):\\
\;\;\;\;\left(t_1 + c \cdot \left(t \cdot j - z \cdot b\right)\right) + i \cdot \left(a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;t_2 + \left(\mathsf{fma}\left(x, \mathsf{fma}\left(z, y, t \cdot \left(-a\right)\right), \mathsf{fma}\left(-a, t, t \cdot a\right) \cdot \left(x + x\right)\right) + b \cdot \left(a \cdot i - z \cdot c\right)\right)\\
\end{array}
Alternatives Alternative 1 Accuracy 88.6% Cost 25417
\[\begin{array}{l}
t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_2 := t_1 - b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := t_2 + j \cdot \left(t \cdot c - y \cdot i\right)\\
\mathbf{if}\;t_3 \leq -\infty \lor \neg \left(t_3 \leq 2 \cdot 10^{+303}\right):\\
\;\;\;\;\left(t_1 + c \cdot \left(t \cdot j - z \cdot b\right)\right) + i \cdot \left(a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;t_2 + \mathsf{fma}\left(j, \mathsf{fma}\left(c, t, y \cdot \left(-i\right)\right), 2 \cdot \left(j \cdot \mathsf{fma}\left(-y, i, y \cdot i\right)\right)\right)\\
\end{array}
\]
Alternative 2 Accuracy 88.6% Cost 19081
\[\begin{array}{l}
t_1 := z \cdot c - a \cdot i\\
t_2 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_3 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_4 := \left(t_2 - b \cdot t_1\right) + t_3\\
\mathbf{if}\;t_4 \leq -\infty \lor \neg \left(t_4 \leq 2 \cdot 10^{+303}\right):\\
\;\;\;\;\left(t_2 + c \cdot \left(t \cdot j - z \cdot b\right)\right) + i \cdot \left(a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;t_3 + \left(t_2 - \mathsf{fma}\left(b, t_1, \mathsf{fma}\left(-a, i, a \cdot i\right) \cdot \left(b + b\right)\right)\right)\\
\end{array}
\]
Alternative 3 Accuracy 88.6% Cost 5833
\[\begin{array}{l}
t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_3 := \left(t_1 - b \cdot \left(z \cdot c - a \cdot i\right)\right) + t_2\\
\mathbf{if}\;t_3 \leq -\infty \lor \neg \left(t_3 \leq 2 \cdot 10^{+303}\right):\\
\;\;\;\;\left(t_1 + c \cdot \left(t \cdot j - z \cdot b\right)\right) + i \cdot \left(a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;t_2 + \left(t_1 - \left(b \cdot \left(z \cdot c\right) - b \cdot \left(a \cdot i\right)\right)\right)\\
\end{array}
\]
Alternative 4 Accuracy 88.6% Cost 5705
\[\begin{array}{l}
t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_2 := \left(t_1 - b \cdot \left(z \cdot c - a \cdot i\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\
\mathbf{if}\;t_2 \leq -\infty \lor \neg \left(t_2 \leq 2 \cdot 10^{+303}\right):\\
\;\;\;\;\left(t_1 + c \cdot \left(t \cdot j - z \cdot b\right)\right) + i \cdot \left(a \cdot b\right)\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 5 Accuracy 63.4% Cost 2929
\[\begin{array}{l}
t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := c \cdot \left(t \cdot j\right)\\
t_4 := \left(t_1 + t_3\right) - c \cdot \left(z \cdot b\right)\\
t_5 := i \cdot \left(y \cdot j\right)\\
t_6 := \left(y \cdot \left(x \cdot z\right) - t_2\right) - t_5\\
t_7 := \left(t_1 - z \cdot \left(b \cdot c\right)\right) - t_5\\
\mathbf{if}\;b \leq -1.9 \cdot 10^{-21}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;b \leq -1.3 \cdot 10^{-67}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq -5.2 \cdot 10^{-112}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;b \leq 2.55 \cdot 10^{-238}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq 6.5 \cdot 10^{-194}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;b \leq 4.3 \cdot 10^{-162}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq 1.7 \cdot 10^{-125}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;b \leq 3.9 \cdot 10^{-69}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq 8.8 \cdot 10^{+17}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;b \leq 2.4 \cdot 10^{+64}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq 1.05 \cdot 10^{+87} \lor \neg \left(b \leq 2 \cdot 10^{+105}\right):\\
\;\;\;\;t_6\\
\mathbf{else}:\\
\;\;\;\;t_3 - t_2\\
\end{array}
\]
Alternative 6 Accuracy 63.4% Cost 2929
\[\begin{array}{l}
t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := c \cdot \left(t \cdot j\right)\\
t_4 := \left(t_1 + t_3\right) - c \cdot \left(z \cdot b\right)\\
t_5 := i \cdot \left(y \cdot j\right)\\
t_6 := \left(y \cdot \left(x \cdot z\right) - t_2\right) - t_5\\
t_7 := \left(t_1 + a \cdot \left(b \cdot i\right)\right) - t_5\\
\mathbf{if}\;b \leq -1.56 \cdot 10^{-21}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;b \leq -1.1 \cdot 10^{-67}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq -2.2 \cdot 10^{-111}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;b \leq 1.55 \cdot 10^{-240}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq 5.5 \cdot 10^{-203}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;b \leq 1.3 \cdot 10^{-160}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq 4.8 \cdot 10^{-125}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;b \leq 4.5 \cdot 10^{-67}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq 3 \cdot 10^{+17}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;b \leq 4.8 \cdot 10^{+67}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;b \leq 2.1 \cdot 10^{+88} \lor \neg \left(b \leq 3.8 \cdot 10^{+105}\right):\\
\;\;\;\;t_6\\
\mathbf{else}:\\
\;\;\;\;t_3 - t_2\\
\end{array}
\]
Alternative 7 Accuracy 68.6% Cost 2921
\[\begin{array}{l}
t_1 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_2 := \left(y \cdot \left(x \cdot z\right) - t_1\right) - i \cdot \left(y \cdot j\right)\\
t_3 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_4 := j \cdot \left(t \cdot c - y \cdot i\right) - \left(c \cdot \left(z \cdot b\right) - t_3\right)\\
t_5 := t_3 - t_1\\
t_6 := t_5 + c \cdot \left(t \cdot j\right)\\
t_7 := t_5 + t \cdot \left(c \cdot j\right)\\
\mathbf{if}\;c \leq -6.8 \cdot 10^{+217}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;c \leq -7.5 \cdot 10^{-90}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;c \leq -4.3 \cdot 10^{-224}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;c \leq -4 \cdot 10^{-304}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;c \leq 1.3 \cdot 10^{-300}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;c \leq 4.7 \cdot 10^{-259}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;c \leq 6.5 \cdot 10^{-233}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;c \leq 1.08 \cdot 10^{-156}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;c \leq 1.65 \cdot 10^{+141} \lor \neg \left(c \leq 2.75 \cdot 10^{+178}\right):\\
\;\;\;\;t_4\\
\mathbf{else}:\\
\;\;\;\;t_7\\
\end{array}
\]
Alternative 8 Accuracy 69.9% Cost 2921
\[\begin{array}{l}
t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_2 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_3 := t_1 - \left(c \cdot \left(z \cdot b\right) - t_2\right)\\
t_4 := t_1 + \left(t_2 - z \cdot \left(b \cdot c\right)\right)\\
t_5 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_6 := y \cdot \left(x \cdot z\right) - t_5\\
t_7 := t_2 - t_5\\
\mathbf{if}\;z \leq -1.22 \cdot 10^{+145}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;z \leq -6.8 \cdot 10^{+67}:\\
\;\;\;\;t_6 - y \cdot \left(i \cdot j\right)\\
\mathbf{elif}\;z \leq -2.6 \cdot 10^{-140}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq -3.7 \cdot 10^{-240}:\\
\;\;\;\;t_7 + c \cdot \left(t \cdot j\right)\\
\mathbf{elif}\;z \leq 7.4 \cdot 10^{-262}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq 4.4 \cdot 10^{-226}:\\
\;\;\;\;t_6 - i \cdot \left(y \cdot j\right)\\
\mathbf{elif}\;z \leq 6.8 \cdot 10^{-132}:\\
\;\;\;\;t_7 + t \cdot \left(c \cdot j\right)\\
\mathbf{elif}\;z \leq 1.12 \cdot 10^{-123}:\\
\;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\
\mathbf{elif}\;z \leq 5.5 \cdot 10^{-15} \lor \neg \left(z \leq 1.95 \cdot 10^{+173}\right):\\
\;\;\;\;t_4\\
\mathbf{else}:\\
\;\;\;\;t_1 + \left(z \cdot \left(x \cdot y\right) - t_5\right)\\
\end{array}
\]
Alternative 9 Accuracy 71.8% Cost 2920
\[\begin{array}{l}
t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_2 := i \cdot \left(y \cdot j\right)\\
t_3 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_4 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_5 := t_1 - \left(c \cdot \left(z \cdot b\right) - t_4\right)\\
t_6 := t_4 - t_3\\
t_7 := y \cdot \left(x \cdot z\right)\\
\mathbf{if}\;c \leq -9 \cdot 10^{+217}:\\
\;\;\;\;t_6 + c \cdot \left(t \cdot j\right)\\
\mathbf{elif}\;c \leq -2.8 \cdot 10^{+47}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;c \leq -1.55 \cdot 10^{-131}:\\
\;\;\;\;t_1 + \left(t_4 + a \cdot \left(b \cdot i\right)\right)\\
\mathbf{elif}\;c \leq -1.36 \cdot 10^{-163}:\\
\;\;\;\;t_6 - t_2\\
\mathbf{elif}\;c \leq -2 \cdot 10^{-198}:\\
\;\;\;\;\left(t_7 + i \cdot \left(a \cdot b\right)\right) - t_2\\
\mathbf{elif}\;c \leq -5.5 \cdot 10^{-224}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;c \leq -1.9 \cdot 10^{-298}:\\
\;\;\;\;t_1 + \left(t_7 - t_3\right)\\
\mathbf{elif}\;c \leq 7.4 \cdot 10^{-52}:\\
\;\;\;\;t_6 - y \cdot \left(i \cdot j\right)\\
\mathbf{elif}\;c \leq 3.1 \cdot 10^{+149}:\\
\;\;\;\;t_1 + \left(t_4 - z \cdot \left(b \cdot c\right)\right)\\
\mathbf{elif}\;c \leq 2.2 \cdot 10^{+180}:\\
\;\;\;\;t_6 + t \cdot \left(c \cdot j\right)\\
\mathbf{else}:\\
\;\;\;\;t_5\\
\end{array}
\]
Alternative 10 Accuracy 71.6% Cost 2656
\[\begin{array}{l}
t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_2 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_3 := t_1 + \left(t_2 + a \cdot \left(b \cdot i\right)\right)\\
t_4 := t_1 + \left(t_2 - z \cdot \left(b \cdot c\right)\right)\\
t_5 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_6 := \left(t_2 + c \cdot \left(t \cdot j - z \cdot b\right)\right) + i \cdot \left(a \cdot b\right)\\
\mathbf{if}\;z \leq -2.3 \cdot 10^{+146}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;z \leq -3.3 \cdot 10^{+67}:\\
\;\;\;\;\left(y \cdot \left(x \cdot z\right) - t_5\right) - y \cdot \left(i \cdot j\right)\\
\mathbf{elif}\;z \leq -9.5 \cdot 10^{-67}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq -5.2 \cdot 10^{-241}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;z \leq 2.1 \cdot 10^{-241}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq 2.4 \cdot 10^{-166}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;z \leq 9.5 \cdot 10^{-18}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq 1.45 \cdot 10^{+167}:\\
\;\;\;\;t_1 + \left(z \cdot \left(x \cdot y\right) - t_5\right)\\
\mathbf{else}:\\
\;\;\;\;t_4\\
\end{array}
\]
Alternative 11 Accuracy 48.7% Cost 2544
\[\begin{array}{l}
t_1 := c \cdot \left(z \cdot b\right)\\
t_2 := y \cdot \left(x \cdot z\right)\\
t_3 := t \cdot \left(c \cdot j - x \cdot a\right)\\
t_4 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_5 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_6 := t_5 - t_1\\
t_7 := c \cdot \left(t \cdot j\right)\\
t_8 := t_2 - t_4\\
\mathbf{if}\;t \leq -9 \cdot 10^{+42}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq -8 \cdot 10^{-19}:\\
\;\;\;\;\left(t_2 + t_7\right) - t_1\\
\mathbf{elif}\;t \leq -2.55 \cdot 10^{-42}:\\
\;\;\;\;t_5 + t_7\\
\mathbf{elif}\;t \leq -3.85 \cdot 10^{-194}:\\
\;\;\;\;t_8\\
\mathbf{elif}\;t \leq 6 \cdot 10^{-289}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;t \leq 2.2 \cdot 10^{-205}:\\
\;\;\;\;t_5 + a \cdot \left(b \cdot i\right)\\
\mathbf{elif}\;t \leq 8.5 \cdot 10^{-162}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;t \leq 8.2 \cdot 10^{-138}:\\
\;\;\;\;t_8\\
\mathbf{elif}\;t \leq 3.3 \cdot 10^{-118}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;t \leq 60000000000:\\
\;\;\;\;t_7 - t_4\\
\mathbf{elif}\;t \leq 2.55 \cdot 10^{+61}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;t \leq 6.8 \cdot 10^{+131}:\\
\;\;\;\;t_8\\
\mathbf{else}:\\
\;\;\;\;t_3\\
\end{array}
\]
Alternative 12 Accuracy 48.5% Cost 2544
\[\begin{array}{l}
t_1 := c \cdot \left(z \cdot b\right)\\
t_2 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_3 := t_2 - t_1\\
t_4 := y \cdot \left(x \cdot z\right)\\
t_5 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_6 := t \cdot \left(c \cdot j - x \cdot a\right)\\
t_7 := c \cdot \left(t \cdot j\right)\\
t_8 := \left(t_4 - z \cdot \left(b \cdot c\right)\right) - i \cdot \left(y \cdot j\right)\\
\mathbf{if}\;t \leq -1.75 \cdot 10^{+43}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;t \leq -4.1 \cdot 10^{-19}:\\
\;\;\;\;\left(t_4 + t_7\right) - t_1\\
\mathbf{elif}\;t \leq -1.92 \cdot 10^{-35}:\\
\;\;\;\;t_2 + t_7\\
\mathbf{elif}\;t \leq -8.4 \cdot 10^{-150}:\\
\;\;\;\;t_8\\
\mathbf{elif}\;t \leq 10^{-287}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 1.35 \cdot 10^{-234}:\\
\;\;\;\;t_2 + a \cdot \left(b \cdot i\right)\\
\mathbf{elif}\;t \leq 1.5 \cdot 10^{-195}:\\
\;\;\;\;t_8\\
\mathbf{elif}\;t \leq 4.4 \cdot 10^{-154}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 5.1 \cdot 10^{-117}:\\
\;\;\;\;t_8\\
\mathbf{elif}\;t \leq 2350000000:\\
\;\;\;\;t_7 - t_5\\
\mathbf{elif}\;t \leq 1.2 \cdot 10^{+60}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 1.06 \cdot 10^{+136}:\\
\;\;\;\;t_4 - t_5\\
\mathbf{else}:\\
\;\;\;\;t_6\\
\end{array}
\]
Alternative 13 Accuracy 49.1% Cost 2540
\[\begin{array}{l}
t_1 := c \cdot \left(z \cdot b\right)\\
t_2 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_3 := t_2 - t_1\\
t_4 := y \cdot \left(x \cdot z\right)\\
t_5 := t \cdot \left(c \cdot j - x \cdot a\right)\\
t_6 := c \cdot \left(t \cdot j\right)\\
t_7 := \left(t_4 + i \cdot \left(a \cdot b\right)\right) - i \cdot \left(y \cdot j\right)\\
\mathbf{if}\;t \leq -8.2 \cdot 10^{+42}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq -5.1 \cdot 10^{-20}:\\
\;\;\;\;\left(t_4 + t_6\right) - t_1\\
\mathbf{elif}\;t \leq -7.2 \cdot 10^{-47}:\\
\;\;\;\;t_2 + t_6\\
\mathbf{elif}\;t \leq -1.85 \cdot 10^{-120}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;t \leq 1.1 \cdot 10^{-278}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 8.6 \cdot 10^{-198}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;t \leq 7.2 \cdot 10^{-162}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 2.7 \cdot 10^{-103}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;t \leq 1.18 \cdot 10^{+14}:\\
\;\;\;\;t_6 - b \cdot \left(z \cdot c - a \cdot i\right)\\
\mathbf{elif}\;t \leq 1.16 \cdot 10^{+62}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 7.8 \cdot 10^{+146}:\\
\;\;\;\;t_7\\
\mathbf{else}:\\
\;\;\;\;t_5\\
\end{array}
\]
Alternative 14 Accuracy 55.2% Cost 2540
\[\begin{array}{l}
t_1 := c \cdot \left(z \cdot b\right)\\
t_2 := a \cdot \left(b \cdot i\right)\\
t_3 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_4 := t_3 - b \cdot \left(z \cdot c - a \cdot i\right)\\
t_5 := y \cdot \left(x \cdot z\right)\\
t_6 := \left(t_5 - z \cdot \left(b \cdot c\right)\right) - i \cdot \left(y \cdot j\right)\\
\mathbf{if}\;a \leq -9.5 \cdot 10^{+120}:\\
\;\;\;\;t_2 - a \cdot \left(x \cdot t\right)\\
\mathbf{elif}\;a \leq -9.2 \cdot 10^{-151}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;a \leq -1.65 \cdot 10^{-306}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;a \leq 1.8 \cdot 10^{-244}:\\
\;\;\;\;t_3 - t_1\\
\mathbf{elif}\;a \leq 4.2 \cdot 10^{-238}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;a \leq 7 \cdot 10^{-145}:\\
\;\;\;\;\left(t_5 + c \cdot \left(t \cdot j\right)\right) - t_1\\
\mathbf{elif}\;a \leq 2.6 \cdot 10^{-60}:\\
\;\;\;\;t_3 + i \cdot \left(a \cdot b\right)\\
\mathbf{elif}\;a \leq 6.7 \cdot 10^{-51}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;a \leq 6.8 \cdot 10^{-45}:\\
\;\;\;\;t \cdot \left(c \cdot j - x \cdot a\right)\\
\mathbf{elif}\;a \leq 8.5 \cdot 10^{+104}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;a \leq 5 \cdot 10^{+286}:\\
\;\;\;\;t_3 + t_2\\
\mathbf{else}:\\
\;\;\;\;t_6\\
\end{array}
\]
Alternative 15 Accuracy 57.3% Cost 2532
\[\begin{array}{l}
t_1 := c \cdot \left(t \cdot j\right)\\
t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_4 := i \cdot \left(y \cdot j\right)\\
t_5 := \left(t_3 - z \cdot \left(b \cdot c\right)\right) - t_4\\
t_6 := t \cdot \left(c \cdot j - x \cdot a\right)\\
\mathbf{if}\;t \leq -1.7 \cdot 10^{+117}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;t \leq -6.6 \cdot 10^{-42}:\\
\;\;\;\;\left(t_3 + t_1\right) - c \cdot \left(z \cdot b\right)\\
\mathbf{elif}\;t \leq -1.4 \cdot 10^{-159}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq -9.5 \cdot 10^{-227}:\\
\;\;\;\;t_3 - t_2\\
\mathbf{elif}\;t \leq 8.6 \cdot 10^{-276}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq 4.9 \cdot 10^{-239}:\\
\;\;\;\;t_3 + a \cdot \left(b \cdot i\right)\\
\mathbf{elif}\;t \leq 9.5 \cdot 10^{-122}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq 1.46 \cdot 10^{-11}:\\
\;\;\;\;t_1 - t_2\\
\mathbf{elif}\;t \leq 1.16 \cdot 10^{+62}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq 6.8 \cdot 10^{+147}:\\
\;\;\;\;\left(y \cdot \left(x \cdot z\right) + i \cdot \left(a \cdot b\right)\right) - t_4\\
\mathbf{else}:\\
\;\;\;\;t_6\\
\end{array}
\]
Alternative 16 Accuracy 60.6% Cost 2532
\[\begin{array}{l}
t_1 := \left(y \cdot \left(x \cdot z\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) - y \cdot \left(i \cdot j\right)\\
t_2 := t \cdot \left(c \cdot j - x \cdot a\right)\\
t_3 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_4 := i \cdot \left(y \cdot j\right)\\
t_5 := \left(t_3 - z \cdot \left(b \cdot c\right)\right) - t_4\\
\mathbf{if}\;t \leq -2.35 \cdot 10^{+129}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq -5.9 \cdot 10^{-40}:\\
\;\;\;\;\left(t_3 + c \cdot \left(t \cdot j\right)\right) - c \cdot \left(z \cdot b\right)\\
\mathbf{elif}\;t \leq -7 \cdot 10^{-193}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -4.5 \cdot 10^{-264}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq 6.4 \cdot 10^{-239}:\\
\;\;\;\;\left(t_3 + a \cdot \left(b \cdot i\right)\right) - t_4\\
\mathbf{elif}\;t \leq 4.6 \cdot 10^{-163}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq 4.1 \cdot 10^{-23}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq 2.4 \cdot 10^{+61}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq 1.15 \cdot 10^{+147}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 17 Accuracy 73.1% Cost 2524
\[\begin{array}{l}
t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_2 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_3 := t_1 + \left(t_2 - z \cdot \left(b \cdot c\right)\right)\\
t_4 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_5 := t_1 + \left(t_2 + i \cdot \left(a \cdot b\right)\right)\\
\mathbf{if}\;z \leq -2.05 \cdot 10^{+145}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq -3.1 \cdot 10^{+67}:\\
\;\;\;\;\left(y \cdot \left(x \cdot z\right) - t_4\right) - y \cdot \left(i \cdot j\right)\\
\mathbf{elif}\;z \leq -1.55 \cdot 10^{-132}:\\
\;\;\;\;t_1 - \left(c \cdot \left(z \cdot b\right) - t_2\right)\\
\mathbf{elif}\;z \leq 6.5 \cdot 10^{-234}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;z \leq 2.7 \cdot 10^{-166}:\\
\;\;\;\;\left(t_2 - t_4\right) + t \cdot \left(c \cdot j\right)\\
\mathbf{elif}\;z \leq 8.5 \cdot 10^{-18}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;z \leq 8 \cdot 10^{+165}:\\
\;\;\;\;t_1 + \left(z \cdot \left(x \cdot y\right) - t_4\right)\\
\mathbf{else}:\\
\;\;\;\;t_3\\
\end{array}
\]
Alternative 18 Accuracy 74.2% Cost 2524
\[\begin{array}{l}
t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := y \cdot \left(x \cdot z\right)\\
t_4 := t_1 + \left(t_3 - t_2\right)\\
t_5 := \left(t_3 + t \cdot \left(c \cdot j - x \cdot a\right)\right) - t_2\\
t_6 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_7 := \left(t_6 + c \cdot \left(t \cdot j - z \cdot b\right)\right) + i \cdot \left(a \cdot b\right)\\
t_8 := t_6 - z \cdot \left(b \cdot c\right)\\
\mathbf{if}\;t \leq -1.25 \cdot 10^{-26}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq -6 \cdot 10^{-178}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;t \leq -3.4 \cdot 10^{-233}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;t \leq -9.2 \cdot 10^{-278}:\\
\;\;\;\;t_8 - i \cdot \left(y \cdot j\right)\\
\mathbf{elif}\;t \leq 2.4 \cdot 10^{-238}:\\
\;\;\;\;t_7\\
\mathbf{elif}\;t \leq 2 \cdot 10^{-162}:\\
\;\;\;\;t_1 + t_8\\
\mathbf{elif}\;t \leq 205000:\\
\;\;\;\;t_4\\
\mathbf{else}:\\
\;\;\;\;t_5\\
\end{array}
\]
Alternative 19 Accuracy 55.9% Cost 2400
\[\begin{array}{l}
t_1 := y \cdot \left(x \cdot z\right)\\
t_2 := c \cdot \left(t \cdot j\right)\\
t_3 := i \cdot \left(y \cdot j\right)\\
t_4 := \left(t_1 + i \cdot \left(a \cdot b\right)\right) - t_3\\
t_5 := c \cdot \left(z \cdot b\right)\\
t_6 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_7 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_8 := \left(t_7 + t_2\right) - t_5\\
\mathbf{if}\;x \leq -1.8 \cdot 10^{+173}:\\
\;\;\;\;t_8\\
\mathbf{elif}\;x \leq -1.35 \cdot 10^{+40}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;x \leq -9 \cdot 10^{-82}:\\
\;\;\;\;t_7 - t_6\\
\mathbf{elif}\;x \leq 6 \cdot 10^{-277}:\\
\;\;\;\;t_2 - t_6\\
\mathbf{elif}\;x \leq 6.2 \cdot 10^{-192}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;x \leq 1.25 \cdot 10^{-154}:\\
\;\;\;\;j \cdot \left(t \cdot c\right) - t_5\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{-53}:\\
\;\;\;\;t_1 - t_6\\
\mathbf{elif}\;x \leq 2.55 \cdot 10^{-23}:\\
\;\;\;\;\left(t_1 - z \cdot \left(b \cdot c\right)\right) - t_3\\
\mathbf{else}:\\
\;\;\;\;t_8\\
\end{array}
\]
Alternative 20 Accuracy 66.7% Cost 2392
\[\begin{array}{l}
t_1 := i \cdot \left(y \cdot j\right)\\
t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_4 := \left(t_3 - z \cdot \left(b \cdot c\right)\right) - t_1\\
t_5 := \left(t_3 - t_2\right) + c \cdot \left(t \cdot j\right)\\
\mathbf{if}\;t \leq -1.36 \cdot 10^{-40}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq -2.2 \cdot 10^{-116}:\\
\;\;\;\;\left(y \cdot \left(x \cdot z\right) - t_2\right) - y \cdot \left(i \cdot j\right)\\
\mathbf{elif}\;t \leq -1.55 \cdot 10^{-226}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq -4.8 \cdot 10^{-263}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;t \leq 1.8 \cdot 10^{-238}:\\
\;\;\;\;\left(t_3 + a \cdot \left(b \cdot i\right)\right) - t_1\\
\mathbf{elif}\;t \leq 2.3 \cdot 10^{-179}:\\
\;\;\;\;t_4\\
\mathbf{else}:\\
\;\;\;\;t_5\\
\end{array}
\]
Alternative 21 Accuracy 67.3% Cost 2392
\[\begin{array}{l}
t_1 := i \cdot \left(y \cdot j\right)\\
t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_4 := \left(t_3 - z \cdot \left(b \cdot c\right)\right) - t_1\\
t_5 := t_3 - t_2\\
t_6 := t_5 + t \cdot \left(c \cdot j\right)\\
\mathbf{if}\;t \leq -1.32 \cdot 10^{-42}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;t \leq -2 \cdot 10^{-116}:\\
\;\;\;\;\left(y \cdot \left(x \cdot z\right) - t_2\right) - y \cdot \left(i \cdot j\right)\\
\mathbf{elif}\;t \leq -7.8 \cdot 10^{-227}:\\
\;\;\;\;t_6\\
\mathbf{elif}\;t \leq -3.6 \cdot 10^{-264}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;t \leq 1.6 \cdot 10^{-238}:\\
\;\;\;\;\left(t_3 + a \cdot \left(b \cdot i\right)\right) - t_1\\
\mathbf{elif}\;t \leq 3.4 \cdot 10^{-180}:\\
\;\;\;\;t_4\\
\mathbf{else}:\\
\;\;\;\;t_5 + c \cdot \left(t \cdot j\right)\\
\end{array}
\]
Alternative 22 Accuracy 48.3% Cost 2280
\[\begin{array}{l}
t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_2 := t_1 - c \cdot \left(z \cdot b\right)\\
t_3 := t \cdot \left(c \cdot j - x \cdot a\right)\\
t_4 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_5 := y \cdot \left(x \cdot z\right) - t_4\\
\mathbf{if}\;t \leq -2.05 \cdot 10^{-38}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq -3.55 \cdot 10^{-193}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq 3.5 \cdot 10^{-286}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq 4 \cdot 10^{-205}:\\
\;\;\;\;t_1 + a \cdot \left(b \cdot i\right)\\
\mathbf{elif}\;t \leq 6.2 \cdot 10^{-158}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq 3.9 \cdot 10^{-138}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;t \leq 2.15 \cdot 10^{-116}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq 6600000000:\\
\;\;\;\;c \cdot \left(t \cdot j\right) - t_4\\
\mathbf{elif}\;t \leq 4.3 \cdot 10^{+60}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq 6.8 \cdot 10^{+131}:\\
\;\;\;\;t_5\\
\mathbf{else}:\\
\;\;\;\;t_3\\
\end{array}
\]
Alternative 23 Accuracy 74.6% Cost 2260
\[\begin{array}{l}
t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := y \cdot \left(x \cdot z\right) - t_2\\
t_4 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_5 := \left(t_4 - t_2\right) + c \cdot \left(t \cdot j\right)\\
\mathbf{if}\;b \leq -1.35 \cdot 10^{+14}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;b \leq 5 \cdot 10^{-67}:\\
\;\;\;\;t_1 + \left(t_4 - z \cdot \left(b \cdot c\right)\right)\\
\mathbf{elif}\;b \leq 2.05 \cdot 10^{+15}:\\
\;\;\;\;t_3 - y \cdot \left(i \cdot j\right)\\
\mathbf{elif}\;b \leq 6.2 \cdot 10^{+96}:\\
\;\;\;\;t_1 - \left(c \cdot \left(z \cdot b\right) - t_4\right)\\
\mathbf{elif}\;b \leq 1.65 \cdot 10^{+198}:\\
\;\;\;\;t_5\\
\mathbf{else}:\\
\;\;\;\;t_3 - i \cdot \left(y \cdot j\right)\\
\end{array}
\]
Alternative 24 Accuracy 75.0% Cost 2260
\[\begin{array}{l}
t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := y \cdot \left(x \cdot z\right) - t_2\\
t_4 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_5 := t_4 - t_2\\
t_6 := i \cdot \left(y \cdot j\right)\\
\mathbf{if}\;b \leq -3.3 \cdot 10^{-19}:\\
\;\;\;\;t_5 - t_6\\
\mathbf{elif}\;b \leq 1.46 \cdot 10^{-67}:\\
\;\;\;\;t_1 + \left(t_4 - z \cdot \left(b \cdot c\right)\right)\\
\mathbf{elif}\;b \leq 4.2 \cdot 10^{+15}:\\
\;\;\;\;t_3 - y \cdot \left(i \cdot j\right)\\
\mathbf{elif}\;b \leq 1.5 \cdot 10^{+95}:\\
\;\;\;\;t_1 - \left(c \cdot \left(z \cdot b\right) - t_4\right)\\
\mathbf{elif}\;b \leq 2.2 \cdot 10^{+197}:\\
\;\;\;\;t_5 + c \cdot \left(t \cdot j\right)\\
\mathbf{else}:\\
\;\;\;\;t_3 - t_6\\
\end{array}
\]
Alternative 25 Accuracy 34.3% Cost 2161
\[\begin{array}{l}
t_1 := a \cdot \left(b \cdot i - x \cdot t\right)\\
t_2 := b \cdot \left(a \cdot i - z \cdot c\right)\\
t_3 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_4 := z \cdot \left(x \cdot y - b \cdot c\right)\\
\mathbf{if}\;j \leq -7 \cdot 10^{+47}:\\
\;\;\;\;c \cdot \left(t \cdot j - z \cdot b\right)\\
\mathbf{elif}\;j \leq -8.9 \cdot 10^{-44}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq -9.5 \cdot 10^{-168}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq -7 \cdot 10^{-226}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;j \leq -4.3 \cdot 10^{-242}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq -4 \cdot 10^{-293}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq 2.85 \cdot 10^{-263}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq 3.4 \cdot 10^{-175}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq 6.3 \cdot 10^{-118}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 3.8 \cdot 10^{-103} \lor \neg \left(j \leq 4.3 \cdot 10^{-10}\right) \land j \leq 2800000000:\\
\;\;\;\;t_4\\
\mathbf{else}:\\
\;\;\;\;t \cdot \left(c \cdot j - x \cdot a\right)\\
\end{array}
\]
Alternative 26 Accuracy 34.4% Cost 2161
\[\begin{array}{l}
t_1 := b \cdot \left(a \cdot i - z \cdot c\right)\\
t_2 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_3 := z \cdot \left(x \cdot y - b \cdot c\right)\\
\mathbf{if}\;j \leq -3.1 \cdot 10^{+50}:\\
\;\;\;\;c \cdot \left(t \cdot j - z \cdot b\right)\\
\mathbf{elif}\;j \leq -8.9 \cdot 10^{-44}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq -4.4 \cdot 10^{-167}:\\
\;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\
\mathbf{elif}\;j \leq -7.5 \cdot 10^{-229}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq -2.8 \cdot 10^{-241}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq -4 \cdot 10^{-294}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 3.5 \cdot 10^{-263}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq 1.72 \cdot 10^{-175}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 2.75 \cdot 10^{-121}:\\
\;\;\;\;a \cdot \left(b \cdot i\right) - a \cdot \left(x \cdot t\right)\\
\mathbf{elif}\;j \leq 1.5 \cdot 10^{-102} \lor \neg \left(j \leq 6.6 \cdot 10^{-10}\right) \land j \leq 820000000:\\
\;\;\;\;t_3\\
\mathbf{else}:\\
\;\;\;\;t \cdot \left(c \cdot j - x \cdot a\right)\\
\end{array}
\]
Alternative 27 Accuracy 41.0% Cost 2148
\[\begin{array}{l}
t_1 := z \cdot \left(x \cdot y - b \cdot c\right)\\
t_2 := c \cdot \left(t \cdot j\right)\\
t_3 := t_2 - b \cdot \left(z \cdot c - a \cdot i\right)\\
t_4 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_5 := t_4 + t_2\\
\mathbf{if}\;j \leq -8.9 \cdot 10^{-44}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;j \leq -7 \cdot 10^{-168}:\\
\;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\
\mathbf{elif}\;j \leq -1.15 \cdot 10^{-228}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq -1.4 \cdot 10^{-242}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;j \leq -4.5 \cdot 10^{-293}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq 2.2 \cdot 10^{-260}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;j \leq 1.8 \cdot 10^{-174}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq 6.8 \cdot 10^{-122}:\\
\;\;\;\;a \cdot \left(b \cdot i\right) - a \cdot \left(x \cdot t\right)\\
\mathbf{elif}\;j \leq 3.2 \cdot 10^{-103}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_5\\
\end{array}
\]
Alternative 28 Accuracy 45.3% Cost 2148
\[\begin{array}{l}
t_1 := c \cdot \left(t \cdot j\right)\\
t_2 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_3 := y \cdot \left(x \cdot z\right) - t_2\\
t_4 := x \cdot \left(y \cdot z - t \cdot a\right) + t_1\\
t_5 := t_1 - t_2\\
\mathbf{if}\;c \leq -2.1 \cdot 10^{+48}:\\
\;\;\;\;c \cdot \left(t \cdot j - z \cdot b\right)\\
\mathbf{elif}\;c \leq -4.5 \cdot 10^{-152}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;c \leq -7.6 \cdot 10^{-201}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;c \leq -7 \cdot 10^{-224}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;c \leq 1.35 \cdot 10^{-306}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;c \leq 4.3 \cdot 10^{-252}:\\
\;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\
\mathbf{elif}\;c \leq 5.8 \cdot 10^{-190}:\\
\;\;\;\;t_5\\
\mathbf{elif}\;c \leq 6.8 \cdot 10^{+22}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;c \leq 8 \cdot 10^{+99}:\\
\;\;\;\;z \cdot \left(x \cdot y - b \cdot c\right)\\
\mathbf{else}:\\
\;\;\;\;t_5\\
\end{array}
\]
Alternative 29 Accuracy 34.3% Cost 2029
\[\begin{array}{l}
t_1 := b \cdot \left(a \cdot i - z \cdot c\right)\\
t_2 := z \cdot \left(x \cdot y - b \cdot c\right)\\
t_3 := a \cdot \left(b \cdot i - x \cdot t\right)\\
t_4 := t \cdot \left(c \cdot j - x \cdot a\right)\\
\mathbf{if}\;j \leq -190:\\
\;\;\;\;c \cdot \left(t \cdot j - z \cdot b\right)\\
\mathbf{elif}\;j \leq -2 \cdot 10^{-168}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq -1.6 \cdot 10^{-236}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq -3.5 \cdot 10^{-241}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;j \leq -1.5 \cdot 10^{-296}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 3.8 \cdot 10^{-263}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq 2 \cdot 10^{-175}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 7.8 \cdot 10^{-118}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq 1.65 \cdot 10^{-102} \lor \neg \left(j \leq 4.4 \cdot 10^{-10}\right) \land j \leq 320000000:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;t_4\\
\end{array}
\]
Alternative 30 Accuracy 40.4% Cost 2016
\[\begin{array}{l}
t_1 := b \cdot \left(a \cdot i - z \cdot c\right)\\
t_2 := x \cdot \left(y \cdot z - t \cdot a\right)\\
t_3 := t_2 + c \cdot \left(t \cdot j\right)\\
\mathbf{if}\;j \leq -8.9 \cdot 10^{-44}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq -7.5 \cdot 10^{-167}:\\
\;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\
\mathbf{elif}\;j \leq -3.5 \cdot 10^{-230}:\\
\;\;\;\;z \cdot \left(x \cdot y - b \cdot c\right)\\
\mathbf{elif}\;j \leq -1.02 \cdot 10^{-243}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq -1.02 \cdot 10^{-293}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 7.5 \cdot 10^{-259}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq 1.85 \cdot 10^{-175}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 5.2 \cdot 10^{-114}:\\
\;\;\;\;a \cdot \left(b \cdot i\right) - a \cdot \left(x \cdot t\right)\\
\mathbf{else}:\\
\;\;\;\;t_3\\
\end{array}
\]
Alternative 31 Accuracy 48.3% Cost 2016
\[\begin{array}{l}
t_1 := x \cdot \left(y \cdot z - t \cdot a\right) - c \cdot \left(z \cdot b\right)\\
t_2 := t \cdot \left(c \cdot j - x \cdot a\right)\\
t_3 := b \cdot \left(z \cdot c - a \cdot i\right)\\
t_4 := y \cdot \left(x \cdot z\right) - t_3\\
\mathbf{if}\;t \leq -1.3 \cdot 10^{-38}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq -2.55 \cdot 10^{-194}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;t \leq 2.9 \cdot 10^{-246}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq 1.12 \cdot 10^{-215}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;t \leq 7.4 \cdot 10^{-116}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq 1.75 \cdot 10^{+14}:\\
\;\;\;\;c \cdot \left(t \cdot j\right) - t_3\\
\mathbf{elif}\;t \leq 1.45 \cdot 10^{+61}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq 6.8 \cdot 10^{+131}:\\
\;\;\;\;t_4\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 32 Accuracy 38.7% Cost 1633
\[\begin{array}{l}
t_1 := c \cdot \left(t \cdot j - z \cdot b\right)\\
t_2 := a \cdot \left(b \cdot i - x \cdot t\right)\\
\mathbf{if}\;a \leq -7.5 \cdot 10^{+90}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq -6.4 \cdot 10^{+24}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq -3 \cdot 10^{-38}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq 6 \cdot 10^{-140}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq 2.8 \cdot 10^{-27}:\\
\;\;\;\;i \cdot \left(a \cdot b\right)\\
\mathbf{elif}\;a \leq 1.16 \cdot 10^{+25} \lor \neg \left(a \leq 2.85 \cdot 10^{+63}\right) \land a \leq 5.2 \cdot 10^{+95}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 33 Accuracy 33.7% Cost 1633
\[\begin{array}{l}
t_1 := b \cdot \left(a \cdot i - z \cdot c\right)\\
t_2 := a \cdot \left(b \cdot i - x \cdot t\right)\\
t_3 := z \cdot \left(x \cdot y\right)\\
\mathbf{if}\;j \leq -0.0052:\\
\;\;\;\;c \cdot \left(t \cdot j - z \cdot b\right)\\
\mathbf{elif}\;j \leq -9 \cdot 10^{-245}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq -7 \cdot 10^{-297}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 4.6 \cdot 10^{-300}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq 1.8 \cdot 10^{-175}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 1.75 \cdot 10^{-108}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq 1.1 \cdot 10^{-7} \lor \neg \left(j \leq 620000000\right):\\
\;\;\;\;t \cdot \left(c \cdot j - x \cdot a\right)\\
\mathbf{else}:\\
\;\;\;\;t_3\\
\end{array}
\]
Alternative 34 Accuracy 20.7% Cost 1440
\[\begin{array}{l}
t_1 := i \cdot \left(a \cdot b\right)\\
t_2 := c \cdot \left(t \cdot j\right)\\
t_3 := y \cdot \left(x \cdot z\right)\\
t_4 := a \cdot \left(t \cdot \left(-x\right)\right)\\
\mathbf{if}\;j \leq -2.9 \cdot 10^{+45}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq -1.26 \cdot 10^{-68}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq -2.4 \cdot 10^{-119}:\\
\;\;\;\;a \cdot \left(b \cdot i\right)\\
\mathbf{elif}\;j \leq -4.6 \cdot 10^{-245}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;j \leq -3 \cdot 10^{-297}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 3.6 \cdot 10^{-266}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq 1.75 \cdot 10^{-143}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 2.8 \cdot 10^{-18}:\\
\;\;\;\;t_4\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 35 Accuracy 20.3% Cost 1245
\[\begin{array}{l}
t_1 := y \cdot \left(x \cdot z\right)\\
t_2 := i \cdot \left(a \cdot b\right)\\
t_3 := c \cdot \left(t \cdot j\right)\\
\mathbf{if}\;j \leq -5.6 \cdot 10^{+41}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq -8.6 \cdot 10^{-69}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq -1.35 \cdot 10^{-294}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq 2.2 \cdot 10^{-266}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 4.7 \cdot 10^{-123}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq 2.15 \cdot 10^{-8} \lor \neg \left(j \leq 86000000\right):\\
\;\;\;\;t_3\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(x \cdot y\right)\\
\end{array}
\]
Alternative 36 Accuracy 29.0% Cost 1104
\[\begin{array}{l}
t_1 := a \cdot \left(b \cdot i - x \cdot t\right)\\
t_2 := c \cdot \left(t \cdot j\right)\\
\mathbf{if}\;j \leq -720:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq -1.3 \cdot 10^{-299}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 2.3 \cdot 10^{-269}:\\
\;\;\;\;y \cdot \left(x \cdot z\right)\\
\mathbf{elif}\;j \leq 5.5 \cdot 10^{-18}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 37 Accuracy 20.4% Cost 980
\[\begin{array}{l}
t_1 := y \cdot \left(x \cdot z\right)\\
t_2 := i \cdot \left(a \cdot b\right)\\
t_3 := c \cdot \left(t \cdot j\right)\\
\mathbf{if}\;j \leq -2.95 \cdot 10^{+44}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;j \leq -1.12 \cdot 10^{-68}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq -2 \cdot 10^{-293}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;j \leq 9.2 \cdot 10^{-265}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;j \leq 3.9 \cdot 10^{-123}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;t_3\\
\end{array}
\]
Alternative 38 Accuracy 20.3% Cost 585
\[\begin{array}{l}
\mathbf{if}\;j \leq -4 \cdot 10^{-41} \lor \neg \left(j \leq 2.45 \cdot 10^{-123}\right):\\
\;\;\;\;c \cdot \left(t \cdot j\right)\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(b \cdot i\right)\\
\end{array}
\]
Alternative 39 Accuracy 20.3% Cost 585
\[\begin{array}{l}
\mathbf{if}\;j \leq -3.6 \cdot 10^{-42} \lor \neg \left(j \leq 2.5 \cdot 10^{-123}\right):\\
\;\;\;\;c \cdot \left(t \cdot j\right)\\
\mathbf{else}:\\
\;\;\;\;i \cdot \left(a \cdot b\right)\\
\end{array}
\]
Alternative 40 Accuracy 16.3% Cost 320
\[a \cdot \left(b \cdot i\right)
\]