?

Average Accuracy: 81.5% → 93.4%
Time: 1.3min
Precision: binary64
Cost: 27081

?

\[\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 := a \cdot i - z \cdot c\\ t_2 := \mathsf{fma}\left(t_1, b, b \cdot \left(z \cdot c - a \cdot i\right)\right)\\ t_3 := y \cdot z - t \cdot a\\ t_4 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_5 := b \cdot t_1\\ t_6 := t_4 + \left(x \cdot t_3 + t_5\right)\\ \mathbf{if}\;t_6 \leq -1 \cdot 10^{+301} \lor \neg \left(t_6 \leq 10^{+308}\right):\\ \;\;\;\;\left(\left(c \cdot \left(t \cdot j\right) + y \cdot \left(x \cdot z\right)\right) + i \cdot \left(a \cdot b - y \cdot j\right)\right) - c \cdot \left(z \cdot b\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(x, t_3, t_5\right) + \left(t_2 + t_2\right)\right) + t_4\\ \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 (- (* a i) (* z c)))
        (t_2 (fma t_1 b (* b (- (* z c) (* a i)))))
        (t_3 (- (* y z) (* t a)))
        (t_4 (* j (- (* t c) (* y i))))
        (t_5 (* b t_1))
        (t_6 (+ t_4 (+ (* x t_3) t_5))))
   (if (or (<= t_6 -1e+301) (not (<= t_6 1e+308)))
     (-
      (+ (+ (* c (* t j)) (* y (* x z))) (* i (- (* a b) (* y j))))
      (* c (* z b)))
     (+ (+ (fma x t_3 t_5) (+ t_2 t_2)) t_4))))
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 = (a * i) - (z * c);
	double t_2 = fma(t_1, b, (b * ((z * c) - (a * i))));
	double t_3 = (y * z) - (t * a);
	double t_4 = j * ((t * c) - (y * i));
	double t_5 = b * t_1;
	double t_6 = t_4 + ((x * t_3) + t_5);
	double tmp;
	if ((t_6 <= -1e+301) || !(t_6 <= 1e+308)) {
		tmp = (((c * (t * j)) + (y * (x * z))) + (i * ((a * b) - (y * j)))) - (c * (z * b));
	} else {
		tmp = (fma(x, t_3, t_5) + (t_2 + t_2)) + t_4;
	}
	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(Float64(a * i) - Float64(z * c))
	t_2 = fma(t_1, b, Float64(b * Float64(Float64(z * c) - Float64(a * i))))
	t_3 = Float64(Float64(y * z) - Float64(t * a))
	t_4 = Float64(j * Float64(Float64(t * c) - Float64(y * i)))
	t_5 = Float64(b * t_1)
	t_6 = Float64(t_4 + Float64(Float64(x * t_3) + t_5))
	tmp = 0.0
	if ((t_6 <= -1e+301) || !(t_6 <= 1e+308))
		tmp = Float64(Float64(Float64(Float64(c * Float64(t * j)) + Float64(y * Float64(x * z))) + Float64(i * Float64(Float64(a * b) - Float64(y * j)))) - Float64(c * Float64(z * b)));
	else
		tmp = Float64(Float64(fma(x, t_3, t_5) + Float64(t_2 + t_2)) + t_4);
	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[(N[(a * i), $MachinePrecision] - N[(z * c), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$2 = N[(t$95$1 * b + N[(b * N[(N[(z * c), $MachinePrecision] - N[(a * i), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$3 = N[(N[(y * z), $MachinePrecision] - N[(t * a), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$4 = N[(j * N[(N[(t * c), $MachinePrecision] - N[(y * i), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, Block[{t$95$5 = N[(b * t$95$1), $MachinePrecision]}, Block[{t$95$6 = N[(t$95$4 + N[(N[(x * t$95$3), $MachinePrecision] + t$95$5), $MachinePrecision]), $MachinePrecision]}, If[Or[LessEqual[t$95$6, -1e+301], N[Not[LessEqual[t$95$6, 1e+308]], $MachinePrecision]], N[(N[(N[(N[(c * N[(t * j), $MachinePrecision]), $MachinePrecision] + N[(y * N[(x * z), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] + N[(i * N[(N[(a * b), $MachinePrecision] - N[(y * j), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - N[(c * N[(z * b), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(N[(x * t$95$3 + t$95$5), $MachinePrecision] + N[(t$95$2 + t$95$2), $MachinePrecision]), $MachinePrecision] + t$95$4), $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 := a \cdot i - z \cdot c\\
t_2 := \mathsf{fma}\left(t_1, b, b \cdot \left(z \cdot c - a \cdot i\right)\right)\\
t_3 := y \cdot z - t \cdot a\\
t_4 := j \cdot \left(t \cdot c - y \cdot i\right)\\
t_5 := b \cdot t_1\\
t_6 := t_4 + \left(x \cdot t_3 + t_5\right)\\
\mathbf{if}\;t_6 \leq -1 \cdot 10^{+301} \lor \neg \left(t_6 \leq 10^{+308}\right):\\
\;\;\;\;\left(\left(c \cdot \left(t \cdot j\right) + y \cdot \left(x \cdot z\right)\right) + i \cdot \left(a \cdot b - y \cdot j\right)\right) - c \cdot \left(z \cdot b\right)\\

\mathbf{else}:\\
\;\;\;\;\left(\mathsf{fma}\left(x, t_3, t_5\right) + \left(t_2 + t_2\right)\right) + t_4\\


\end{array}

Error?

Target

Original81.5%
Target75.5%
Herbie93.4%
\[\begin{array}{l} \mathbf{if}\;t < -8.120978919195912 \cdot 10^{-33}:\\ \;\;\;\;x \cdot \left(z \cdot y - a \cdot t\right) - \left(b \cdot \left(z \cdot c - a \cdot i\right) - \left(c \cdot t - y \cdot i\right) \cdot j\right)\\ \mathbf{elif}\;t < -4.712553818218485 \cdot 10^{-169}:\\ \;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \frac{j \cdot \left({\left(c \cdot t\right)}^{2} - {\left(i \cdot y\right)}^{2}\right)}{c \cdot t + i \cdot y}\\ \mathbf{elif}\;t < -7.633533346031584 \cdot 10^{-308}:\\ \;\;\;\;x \cdot \left(z \cdot y - a \cdot t\right) - \left(b \cdot \left(z \cdot c - a \cdot i\right) - \left(c \cdot t - y \cdot i\right) \cdot j\right)\\ \mathbf{elif}\;t < 1.0535888557455487 \cdot 10^{-139}:\\ \;\;\;\;\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \frac{j \cdot \left({\left(c \cdot t\right)}^{2} - {\left(i \cdot y\right)}^{2}\right)}{c \cdot t + i \cdot y}\\ \mathbf{else}:\\ \;\;\;\;x \cdot \left(z \cdot y - a \cdot t\right) - \left(b \cdot \left(z \cdot c - a \cdot i\right) - \left(c \cdot t - y \cdot i\right) \cdot j\right)\\ \end{array} \]

Derivation?

  1. Split input into 2 regimes
  2. if (+.f64 (-.f64 (*.f64 x (-.f64 (*.f64 y z) (*.f64 t a))) (*.f64 b (-.f64 (*.f64 c z) (*.f64 i a)))) (*.f64 j (-.f64 (*.f64 c t) (*.f64 i y)))) < -1.00000000000000005e301 or 1e308 < (+.f64 (-.f64 (*.f64 x (-.f64 (*.f64 y z) (*.f64 t a))) (*.f64 b (-.f64 (*.f64 c z) (*.f64 i a)))) (*.f64 j (-.f64 (*.f64 c t) (*.f64 i y))))

    1. Initial program 6.1%

      \[\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) \]
    2. Simplified6.1%

      \[\leadsto \color{blue}{\mathsf{fma}\left(j, t \cdot c - y \cdot i, x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right)} \]
      Proof

      [Start]6.1

      \[ \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) \]

      +-commutative [=>]6.1

      \[ \color{blue}{j \cdot \left(c \cdot t - i \cdot y\right) + \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right)} \]

      fma-def [=>]6.1

      \[ \color{blue}{\mathsf{fma}\left(j, c \cdot t - i \cdot y, x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right)} \]

      *-commutative [=>]6.1

      \[ \mathsf{fma}\left(j, c \cdot t - \color{blue}{y \cdot i}, x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) \]

      *-commutative [=>]6.1

      \[ \mathsf{fma}\left(j, \color{blue}{t \cdot c} - y \cdot i, x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) \]

      *-commutative [=>]6.1

      \[ \mathsf{fma}\left(j, t \cdot c - y \cdot i, x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - \color{blue}{a \cdot i}\right)\right) \]

      *-commutative [=>]6.1

      \[ \mathsf{fma}\left(j, t \cdot c - y \cdot i, x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(\color{blue}{z \cdot c} - a \cdot i\right)\right) \]
    3. Taylor expanded in i around -inf 63.4%

      \[\leadsto \color{blue}{\left(-1 \cdot \left(i \cdot \left(y \cdot j - a \cdot b\right)\right) + \left(c \cdot \left(t \cdot j\right) + \left(y \cdot z - a \cdot t\right) \cdot x\right)\right) - c \cdot \left(b \cdot z\right)} \]
    4. Taylor expanded in y around inf 70.0%

      \[\leadsto \left(-1 \cdot \left(i \cdot \left(y \cdot j - a \cdot b\right)\right) + \left(c \cdot \left(t \cdot j\right) + \color{blue}{y \cdot \left(z \cdot x\right)}\right)\right) - c \cdot \left(b \cdot z\right) \]

    if -1.00000000000000005e301 < (+.f64 (-.f64 (*.f64 x (-.f64 (*.f64 y z) (*.f64 t a))) (*.f64 b (-.f64 (*.f64 c z) (*.f64 i a)))) (*.f64 j (-.f64 (*.f64 c t) (*.f64 i y)))) < 1e308

    1. Initial program 98.9%

      \[\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) \]
    2. Simplified98.9%

      \[\leadsto \color{blue}{\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right)} \]
      Proof

      [Start]98.9

      \[ \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) \]

      cancel-sign-sub [<=]98.9

      \[ \color{blue}{\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) - \left(-j\right) \cdot \left(c \cdot t - i \cdot y\right)} \]

      cancel-sign-sub-inv [=>]98.9

      \[ \color{blue}{\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - i \cdot a\right)\right) + \left(-\left(-j\right)\right) \cdot \left(c \cdot t - i \cdot y\right)} \]

      *-commutative [=>]98.9

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(c \cdot z - \color{blue}{a \cdot i}\right)\right) + \left(-\left(-j\right)\right) \cdot \left(c \cdot t - i \cdot y\right) \]

      *-commutative [=>]98.9

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(\color{blue}{z \cdot c} - a \cdot i\right)\right) + \left(-\left(-j\right)\right) \cdot \left(c \cdot t - i \cdot y\right) \]

      remove-double-neg [=>]98.9

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + \color{blue}{j} \cdot \left(c \cdot t - i \cdot y\right) \]

      *-commutative [=>]98.9

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + j \cdot \left(\color{blue}{t \cdot c} - i \cdot y\right) \]

      *-commutative [=>]98.9

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + j \cdot \left(t \cdot c - \color{blue}{y \cdot i}\right) \]
    3. Applied egg-rr98.8%

      \[\leadsto \color{blue}{\left(\mathsf{fma}\left(x, y \cdot z - t \cdot a, \left(c \cdot z - i \cdot a\right) \cdot \left(-b\right)\right) + \left(\mathsf{fma}\left(-\left(c \cdot z - i \cdot a\right), b, b \cdot \left(c \cdot z - i \cdot a\right)\right) + \mathsf{fma}\left(-\left(c \cdot z - i \cdot a\right), b, b \cdot \left(c \cdot z - i \cdot a\right)\right)\right)\right)} + j \cdot \left(t \cdot c - y \cdot i\right) \]
      Proof

      [Start]98.9

      \[ \left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]

      prod-diff [=>]98.9

      \[ \color{blue}{\left(\mathsf{fma}\left(x, y \cdot z - t \cdot a, -\left(z \cdot c - a \cdot i\right) \cdot b\right) + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right)} + j \cdot \left(t \cdot c - y \cdot i\right) \]

      *-commutative [<=]98.9

      \[ \left(\mathsf{fma}\left(x, y \cdot z - t \cdot a, -\color{blue}{b \cdot \left(z \cdot c - a \cdot i\right)}\right) + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]

      fma-neg [<=]98.9

      \[ \left(\color{blue}{\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right)} + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]

      prod-diff [=>]98.9

      \[ \left(\color{blue}{\left(\mathsf{fma}\left(x, y \cdot z - t \cdot a, -\left(z \cdot c - a \cdot i\right) \cdot b\right) + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right)} + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]

      *-commutative [<=]98.9

      \[ \left(\left(\mathsf{fma}\left(x, y \cdot z - t \cdot a, -\color{blue}{b \cdot \left(z \cdot c - a \cdot i\right)}\right) + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right) + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]

      fma-neg [<=]98.9

      \[ \left(\left(\color{blue}{\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right)} + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right) + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right) \]

      associate-+l+ [=>]98.8

      \[ \color{blue}{\left(\left(x \cdot \left(y \cdot z - t \cdot a\right) - b \cdot \left(z \cdot c - a \cdot i\right)\right) + \left(\mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right) + \mathsf{fma}\left(-\left(z \cdot c - a \cdot i\right), b, \left(z \cdot c - a \cdot i\right) \cdot b\right)\right)\right)} + j \cdot \left(t \cdot c - y \cdot i\right) \]
  3. Recombined 2 regimes into one program.
  4. Final simplification93.4%

    \[\leadsto \begin{array}{l} \mathbf{if}\;j \cdot \left(t \cdot c - y \cdot i\right) + \left(x \cdot \left(y \cdot z - t \cdot a\right) + b \cdot \left(a \cdot i - z \cdot c\right)\right) \leq -1 \cdot 10^{+301} \lor \neg \left(j \cdot \left(t \cdot c - y \cdot i\right) + \left(x \cdot \left(y \cdot z - t \cdot a\right) + b \cdot \left(a \cdot i - z \cdot c\right)\right) \leq 10^{+308}\right):\\ \;\;\;\;\left(\left(c \cdot \left(t \cdot j\right) + y \cdot \left(x \cdot z\right)\right) + i \cdot \left(a \cdot b - y \cdot j\right)\right) - c \cdot \left(z \cdot b\right)\\ \mathbf{else}:\\ \;\;\;\;\left(\mathsf{fma}\left(x, y \cdot z - t \cdot a, b \cdot \left(a \cdot i - z \cdot c\right)\right) + \left(\mathsf{fma}\left(a \cdot i - z \cdot c, b, b \cdot \left(z \cdot c - a \cdot i\right)\right) + \mathsf{fma}\left(a \cdot i - z \cdot c, b, b \cdot \left(z \cdot c - a \cdot i\right)\right)\right)\right) + j \cdot \left(t \cdot c - y \cdot i\right)\\ \end{array} \]

Alternatives

Alternative 1
Accuracy94.0%
Cost5833
\[\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 := t_2 + \left(t_1 + b \cdot \left(a \cdot i - z \cdot c\right)\right)\\ \mathbf{if}\;t_3 \leq -\infty \lor \neg \left(t_3 \leq 10^{+308}\right):\\ \;\;\;\;\left(\left(c \cdot \left(t \cdot j\right) + y \cdot \left(x \cdot z\right)\right) + i \cdot \left(a \cdot b - y \cdot j\right)\right) - c \cdot \left(z \cdot b\right)\\ \mathbf{else}:\\ \;\;\;\;t_2 + \left(t_1 + \left(b \cdot \left(a \cdot i\right) - b \cdot \left(z \cdot c\right)\right)\right)\\ \end{array} \]
Alternative 2
Accuracy94.0%
Cost5705
\[\begin{array}{l} t_1 := j \cdot \left(t \cdot c - y \cdot i\right) + \left(x \cdot \left(y \cdot z - t \cdot a\right) + b \cdot \left(a \cdot i - z \cdot c\right)\right)\\ \mathbf{if}\;t_1 \leq -\infty \lor \neg \left(t_1 \leq 10^{+308}\right):\\ \;\;\;\;\left(\left(c \cdot \left(t \cdot j\right) + y \cdot \left(x \cdot z\right)\right) + i \cdot \left(a \cdot b - y \cdot j\right)\right) - c \cdot \left(z \cdot b\right)\\ \mathbf{else}:\\ \;\;\;\;t_1\\ \end{array} \]
Alternative 3
Accuracy91.6%
Cost5704
\[\begin{array}{l} t_1 := y \cdot \left(x \cdot z\right)\\ t_2 := c \cdot \left(z \cdot b\right)\\ t_3 := j \cdot \left(t \cdot c - y \cdot i\right) + \left(x \cdot \left(y \cdot z - t \cdot a\right) + b \cdot \left(a \cdot i - z \cdot c\right)\right)\\ t_4 := y \cdot \left(i \cdot j\right)\\ \mathbf{if}\;t_3 \leq -\infty:\\ \;\;\;\;\left(\left(t_1 + t \cdot \left(c \cdot j\right)\right) - t_4\right) - t_2\\ \mathbf{elif}\;t_3 \leq 10^{+308}:\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;\left(\left(c \cdot \left(t \cdot j\right) + t_1\right) - t_4\right) - t_2\\ \end{array} \]
Alternative 4
Accuracy60.2%
Cost3192
\[\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 := i \cdot \left(a \cdot b\right) + z \cdot \left(x \cdot y - b \cdot c\right)\\ t_4 := b \cdot \left(a \cdot i - z \cdot c\right)\\ t_5 := t_1 + t_4\\ t_6 := t_2 + t_4\\ t_7 := c \cdot \left(z \cdot b\right)\\ t_8 := \left(c \cdot \left(t \cdot j\right) + t_2\right) - t_7\\ t_9 := t_1 + a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{if}\;c \leq -2.95 \cdot 10^{+129}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;c \leq -1 \cdot 10^{-7}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;c \leq -9.6 \cdot 10^{-99}:\\ \;\;\;\;t_2 - j \cdot \left(y \cdot i - t \cdot c\right)\\ \mathbf{elif}\;c \leq -2.9 \cdot 10^{-129}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;c \leq -8 \cdot 10^{-142}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;c \leq -9 \cdot 10^{-262}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;c \leq 4.5 \cdot 10^{-289}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;c \leq 2.3 \cdot 10^{-190}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;c \leq 8 \cdot 10^{-37}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;c \leq 1.85 \cdot 10^{+58}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;c \leq 9.2 \cdot 10^{+98}:\\ \;\;\;\;t_1 - t_7\\ \mathbf{elif}\;c \leq 2.6 \cdot 10^{+104}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;c \leq 6.5 \cdot 10^{+110}:\\ \;\;\;\;t \cdot \left(c \cdot j - x \cdot a\right)\\ \mathbf{elif}\;c \leq 2.4 \cdot 10^{+196}:\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;t_8\\ \end{array} \]
Alternative 5
Accuracy60.2%
Cost3192
\[\begin{array}{l} t_1 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_2 := b \cdot \left(a \cdot i - z \cdot c\right)\\ t_3 := t_1 + t_2\\ t_4 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_5 := i \cdot \left(a \cdot b\right) + z \cdot \left(x \cdot y - b \cdot c\right)\\ t_6 := c \cdot \left(z \cdot b\right)\\ t_7 := \left(c \cdot \left(t \cdot j\right) + t_4\right) - t_6\\ t_8 := t_1 + a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{if}\;c \leq -7 \cdot 10^{+128}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;c \leq -6 \cdot 10^{-8}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;c \leq -6.5 \cdot 10^{-99}:\\ \;\;\;\;t_4 - j \cdot \left(y \cdot i - t \cdot c\right)\\ \mathbf{elif}\;c \leq -8.2 \cdot 10^{-128}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;c \leq -2.6 \cdot 10^{-141}:\\ \;\;\;\;t_4 + t_2\\ \mathbf{elif}\;c \leq -3.7 \cdot 10^{-261}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;c \leq 8 \cdot 10^{-285}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;c \leq 2.6 \cdot 10^{-188}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;c \leq 2.2 \cdot 10^{-36}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;c \leq 1.08 \cdot 10^{+58}:\\ \;\;\;\;t_4 + \left(b \cdot \left(a \cdot i\right) - b \cdot \left(z \cdot c\right)\right)\\ \mathbf{elif}\;c \leq 1.6 \cdot 10^{+100}:\\ \;\;\;\;t_1 - t_6\\ \mathbf{elif}\;c \leq 2.5 \cdot 10^{+104}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;c \leq 2.2 \cdot 10^{+108}:\\ \;\;\;\;t \cdot \left(c \cdot j - x \cdot a\right)\\ \mathbf{elif}\;c \leq 2.4 \cdot 10^{+196}:\\ \;\;\;\;t_5\\ \mathbf{else}:\\ \;\;\;\;t_7\\ \end{array} \]
Alternative 6
Accuracy70.3%
Cost3053
\[\begin{array}{l} t_1 := y \cdot \left(x \cdot z\right)\\ t_2 := i \cdot \left(a \cdot b\right)\\ t_3 := y \cdot \left(i \cdot j\right)\\ t_4 := c \cdot \left(z \cdot b\right)\\ t_5 := c \cdot \left(t \cdot j\right)\\ t_6 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_7 := t_6 + \left(t_2 + x \cdot \left(y \cdot z - t \cdot a\right)\right)\\ t_8 := b \cdot \left(a \cdot i - z \cdot c\right)\\ t_9 := \left(t_5 - a \cdot \left(x \cdot t\right)\right) + t_8\\ t_10 := t_6 + t_8\\ \mathbf{if}\;y \leq -3.6 \cdot 10^{+94}:\\ \;\;\;\;\left(\left(t_1 + t \cdot \left(c \cdot j\right)\right) - t_3\right) - t_4\\ \mathbf{elif}\;y \leq -1.28 \cdot 10^{+36}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;y \leq -6 \cdot 10^{-19}:\\ \;\;\;\;t_10\\ \mathbf{elif}\;y \leq -5.2 \cdot 10^{-135}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;y \leq -7.5 \cdot 10^{-192}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;y \leq -2.1 \cdot 10^{-238}:\\ \;\;\;\;t_2 + z \cdot \left(x \cdot y - b \cdot c\right)\\ \mathbf{elif}\;y \leq 8.6 \cdot 10^{-116}:\\ \;\;\;\;t_9\\ \mathbf{elif}\;y \leq 6.8 \cdot 10^{-51}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;y \leq 6.2 \cdot 10^{-30}:\\ \;\;\;\;t_10\\ \mathbf{elif}\;y \leq 1.95 \cdot 10^{-12} \lor \neg \left(y \leq 2.8 \cdot 10^{+54}\right):\\ \;\;\;\;\left(\left(t_5 + t_1\right) - t_3\right) - t_4\\ \mathbf{else}:\\ \;\;\;\;t_7\\ \end{array} \]
Alternative 7
Accuracy32.0%
Cost2953
\[\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 := c \cdot \left(t \cdot j - z \cdot b\right)\\ t_4 := i \cdot \left(a \cdot b - y \cdot j\right)\\ \mathbf{if}\;t \leq -1.12 \cdot 10^{+223}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -7.6 \cdot 10^{+37}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -0.052:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -3 \cdot 10^{-81}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -1.1 \cdot 10^{-149}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 1.95 \cdot 10^{-296}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 4.6 \cdot 10^{-253}:\\ \;\;\;\;x \cdot \left(y \cdot z\right)\\ \mathbf{elif}\;t \leq 2.45 \cdot 10^{-231}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 1.02 \cdot 10^{-200}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 1.42 \cdot 10^{-154}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq 6.9 \cdot 10^{-138}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 1.1 \cdot 10^{-125}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 1.65 \cdot 10^{-81}:\\ \;\;\;\;y \cdot \left(-i \cdot j\right)\\ \mathbf{elif}\;t \leq 1.4 \cdot 10^{-52}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 2.4 \cdot 10^{-33}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq 2.3 \cdot 10^{-29}:\\ \;\;\;\;z \cdot \left(x \cdot y\right)\\ \mathbf{elif}\;t \leq 34 \lor \neg \left(t \leq 6.6 \cdot 10^{+76}\right):\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_4\\ \end{array} \]
Alternative 8
Accuracy56.6%
Cost2808
\[\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 + t_1\\ t_4 := t_2 - j \cdot \left(y \cdot i - t \cdot c\right)\\ t_5 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_6 := t_5 - c \cdot \left(z \cdot b\right)\\ t_7 := t_5 + t_1\\ t_8 := t_5 + a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{if}\;c \leq -9.6 \cdot 10^{+129}:\\ \;\;\;\;c \cdot \left(t \cdot j - z \cdot b\right)\\ \mathbf{elif}\;c \leq -8.5 \cdot 10^{-8}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;c \leq -1.2 \cdot 10^{-105}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;c \leq -3 \cdot 10^{-128}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;c \leq -2.3 \cdot 10^{-139}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;c \leq -9.5 \cdot 10^{-262}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;c \leq 1.65 \cdot 10^{-288}:\\ \;\;\;\;i \cdot \left(a \cdot b\right) + z \cdot \left(x \cdot y - b \cdot c\right)\\ \mathbf{elif}\;c \leq 2.5 \cdot 10^{-189}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;c \leq 1.75 \cdot 10^{-36}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;c \leq 2.8 \cdot 10^{+58}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;c \leq 4.6 \cdot 10^{+94}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;c \leq 2.55 \cdot 10^{+122}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;c \leq 3.5 \cdot 10^{+171}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;c \leq 3.8 \cdot 10^{+232}:\\ \;\;\;\;y \cdot \left(x \cdot z - i \cdot j\right)\\ \mathbf{else}:\\ \;\;\;\;t_6\\ \end{array} \]
Alternative 9
Accuracy40.3%
Cost2688
\[\begin{array}{l} t_1 := y \cdot \left(x \cdot z - i \cdot j\right)\\ t_2 := i \cdot \left(a \cdot b - y \cdot j\right)\\ t_3 := c \cdot \left(t \cdot j - z \cdot b\right)\\ t_4 := b \cdot \left(a \cdot i - z \cdot c\right)\\ t_5 := t \cdot \left(c \cdot j - x \cdot a\right)\\ \mathbf{if}\;t \leq -0.72:\\ \;\;\;\;t_5\\ \mathbf{elif}\;t \leq -1.08 \cdot 10^{-88}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq -5.4 \cdot 10^{-142}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 1.4 \cdot 10^{-296}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 1.2 \cdot 10^{-253}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 8.2 \cdot 10^{-234}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 1.26 \cdot 10^{-200}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 2.1 \cdot 10^{-162}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq 7.8 \cdot 10^{-138}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 2.1 \cdot 10^{-125}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 1.3 \cdot 10^{-87}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 6.6 \cdot 10^{-75}:\\ \;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{elif}\;t \leq 2.1 \cdot 10^{-43}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq 8 \cdot 10^{-29}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;t \leq 5 \cdot 10^{-19}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 1.3 \cdot 10^{+77}:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_5\\ \end{array} \]
Alternative 10
Accuracy36.9%
Cost2557
\[\begin{array}{l} t_1 := i \cdot \left(a \cdot b - y \cdot j\right)\\ t_2 := c \cdot \left(t \cdot j - z \cdot b\right)\\ t_3 := b \cdot \left(a \cdot i - z \cdot c\right)\\ t_4 := t \cdot \left(c \cdot j - x \cdot a\right)\\ \mathbf{if}\;t \leq -0.66:\\ \;\;\;\;t_4\\ \mathbf{elif}\;t \leq -1.25 \cdot 10^{-80}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq -6.6 \cdot 10^{-150}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 1.95 \cdot 10^{-296}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq 4.6 \cdot 10^{-253}:\\ \;\;\;\;x \cdot \left(y \cdot z\right)\\ \mathbf{elif}\;t \leq 2.05 \cdot 10^{-234}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq 1.3 \cdot 10^{-200}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 1.95 \cdot 10^{-154}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;t \leq 7.2 \cdot 10^{-138}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;t \leq 1.85 \cdot 10^{-125}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;t \leq 3.3 \cdot 10^{-81}:\\ \;\;\;\;y \cdot \left(-i \cdot j\right)\\ \mathbf{elif}\;t \leq 1.12 \cdot 10^{-51}:\\ \;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{elif}\;t \leq 6.7 \cdot 10^{-19} \lor \neg \left(t \leq 1.65 \cdot 10^{+77}\right) \land t \leq 1.42 \cdot 10^{+203}:\\ \;\;\;\;t_4\\ \mathbf{else}:\\ \;\;\;\;t_1\\ \end{array} \]
Alternative 11
Accuracy44.8%
Cost2544
\[\begin{array}{l} t_1 := t \cdot \left(c \cdot j - x \cdot a\right)\\ t_2 := i \cdot \left(a \cdot b\right) - j \cdot \left(y \cdot i - t \cdot c\right)\\ t_3 := b \cdot \left(a \cdot i - z \cdot c\right)\\ \mathbf{if}\;z \leq -7.2 \cdot 10^{+53}:\\ \;\;\;\;z \cdot \left(x \cdot y\right) - z \cdot \left(b \cdot c\right)\\ \mathbf{elif}\;z \leq -2.2 \cdot 10^{+29}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;z \leq -9.5 \cdot 10^{-96}:\\ \;\;\;\;y \cdot \left(x \cdot z - i \cdot j\right)\\ \mathbf{elif}\;z \leq -1.7 \cdot 10^{-104}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;z \leq -5 \cdot 10^{-147}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;z \leq -4.3 \cdot 10^{-274}:\\ \;\;\;\;i \cdot \left(a \cdot b - y \cdot j\right)\\ \mathbf{elif}\;z \leq -1.35 \cdot 10^{-286}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;z \leq 3.8 \cdot 10^{-288}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;z \leq 1.25 \cdot 10^{-270}:\\ \;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{elif}\;z \leq 5.2 \cdot 10^{-88}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;z \leq 600000:\\ \;\;\;\;t_3\\ \mathbf{elif}\;z \leq 6 \cdot 10^{+104}:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;z \cdot \left(x \cdot y - b \cdot c\right)\\ \end{array} \]
Alternative 12
Accuracy50.9%
Cost2544
\[\begin{array}{l} t_1 := t \cdot \left(c \cdot j - x \cdot a\right)\\ t_2 := i \cdot \left(a \cdot b\right)\\ t_3 := t_2 + z \cdot \left(x \cdot y - b \cdot c\right)\\ t_4 := y \cdot \left(x \cdot z - i \cdot j\right)\\ t_5 := t_2 - j \cdot \left(y \cdot i - t \cdot c\right)\\ \mathbf{if}\;z \leq -4.4 \cdot 10^{-42}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;z \leq -8.5 \cdot 10^{-93}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;z \leq -3.5 \cdot 10^{-104}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;z \leq -1.1 \cdot 10^{-145}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;z \leq -5.2 \cdot 10^{-164}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;z \leq -6.2 \cdot 10^{-206}:\\ \;\;\;\;x \cdot \left(y \cdot z - t \cdot a\right) - c \cdot \left(z \cdot b\right)\\ \mathbf{elif}\;z \leq -7.4 \cdot 10^{-215}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;z \leq -4.2 \cdot 10^{-274}:\\ \;\;\;\;i \cdot \left(a \cdot b - y \cdot j\right)\\ \mathbf{elif}\;z \leq -1.35 \cdot 10^{-286}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;z \leq 4.8 \cdot 10^{-289}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;z \leq 1.6 \cdot 10^{-270}:\\ \;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{elif}\;z \leq 5.2 \cdot 10^{-88}:\\ \;\;\;\;t_5\\ \mathbf{else}:\\ \;\;\;\;t_3\\ \end{array} \]
Alternative 13
Accuracy53.2%
Cost2537
\[\begin{array}{l} t_1 := b \cdot \left(a \cdot i - z \cdot c\right) + x \cdot \left(y \cdot z\right)\\ t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_3 := t_2 + a \cdot \left(b \cdot i - x \cdot t\right)\\ t_4 := i \cdot \left(a \cdot b\right)\\ t_5 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_6 := c \cdot \left(z \cdot b\right)\\ \mathbf{if}\;i \leq -1.26 \cdot 10^{+137}:\\ \;\;\;\;i \cdot \left(a \cdot b - y \cdot j\right)\\ \mathbf{elif}\;i \leq -3.1 \cdot 10^{+55}:\\ \;\;\;\;t_4 + t_5\\ \mathbf{elif}\;i \leq -7.5 \cdot 10^{-27}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;i \leq -8.6 \cdot 10^{-108}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;i \leq -1.04 \cdot 10^{-131}:\\ \;\;\;\;t_2 - t_6\\ \mathbf{elif}\;i \leq -2.2 \cdot 10^{-273}:\\ \;\;\;\;t_5 - t_6\\ \mathbf{elif}\;i \leq -5.6 \cdot 10^{-291}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;i \leq 1.32 \cdot 10^{-281}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;i \leq 5.4 \cdot 10^{-39} \lor \neg \left(i \leq 5.8 \cdot 10^{+100}\right):\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;t_4 + z \cdot \left(x \cdot y - b \cdot c\right)\\ \end{array} \]
Alternative 14
Accuracy65.7%
Cost2532
\[\begin{array}{l} t_1 := c \cdot \left(t \cdot j\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 := \left(t_1 - a \cdot \left(x \cdot t\right)\right) + t_2\\ t_5 := c \cdot \left(z \cdot b\right)\\ t_6 := \left(\left(t_1 + y \cdot \left(x \cdot z\right)\right) - y \cdot \left(i \cdot j\right)\right) - t_5\\ t_7 := j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{if}\;x \leq -1.55 \cdot 10^{-52}:\\ \;\;\;\;t_3 + t_2\\ \mathbf{elif}\;x \leq -9 \cdot 10^{-106}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;x \leq -5 \cdot 10^{-133}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;x \leq -1.25 \cdot 10^{-209}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;x \leq -2.8 \cdot 10^{-251}:\\ \;\;\;\;t_7 + a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{elif}\;x \leq -1 \cdot 10^{-275}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;x \leq 9.5 \cdot 10^{-300}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;x \leq 1.2 \cdot 10^{-228}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;x \leq 2.05 \cdot 10^{-62}:\\ \;\;\;\;t_7 + t_2\\ \mathbf{else}:\\ \;\;\;\;\left(t_1 + t_3\right) - t_5\\ \end{array} \]
Alternative 15
Accuracy65.5%
Cost2532
\[\begin{array}{l} t_1 := c \cdot \left(t \cdot j\right)\\ t_2 := y \cdot \left(x \cdot z\right)\\ t_3 := b \cdot \left(a \cdot i - z \cdot c\right)\\ t_4 := c \cdot \left(z \cdot b\right)\\ t_5 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_6 := y \cdot \left(i \cdot j\right)\\ t_7 := \left(\left(t_1 + t_2\right) - t_6\right) - t_4\\ t_8 := \left(t_1 - a \cdot \left(x \cdot t\right)\right) + t_3\\ t_9 := j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{if}\;x \leq -1.35 \cdot 10^{-52}:\\ \;\;\;\;t_5 + t_3\\ \mathbf{elif}\;x \leq -1 \cdot 10^{-106}:\\ \;\;\;\;\left(\left(t_2 + t \cdot \left(c \cdot j\right)\right) - t_6\right) - t_4\\ \mathbf{elif}\;x \leq -3.7 \cdot 10^{-134}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;x \leq -1.15 \cdot 10^{-207}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;x \leq -5.6 \cdot 10^{-251}:\\ \;\;\;\;t_9 + a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{elif}\;x \leq -3.6 \cdot 10^{-274}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;x \leq 5.1 \cdot 10^{-300}:\\ \;\;\;\;t_8\\ \mathbf{elif}\;x \leq 1.2 \cdot 10^{-228}:\\ \;\;\;\;t_7\\ \mathbf{elif}\;x \leq 4.6 \cdot 10^{-64}:\\ \;\;\;\;t_9 + t_3\\ \mathbf{else}:\\ \;\;\;\;\left(t_1 + t_5\right) - t_4\\ \end{array} \]
Alternative 16
Accuracy50.8%
Cost2412
\[\begin{array}{l} t_1 := i \cdot \left(a \cdot b\right)\\ t_2 := t_1 + z \cdot \left(x \cdot y - b \cdot c\right)\\ t_3 := c \cdot \left(z \cdot b\right)\\ t_4 := j \cdot \left(t \cdot c - y \cdot i\right) - t_3\\ t_5 := x \cdot \left(y \cdot z - t \cdot a\right) - t_3\\ t_6 := b \cdot \left(a \cdot i - z \cdot c\right) + x \cdot \left(y \cdot z\right)\\ \mathbf{if}\;i \leq -3.8 \cdot 10^{+137}:\\ \;\;\;\;i \cdot \left(a \cdot b - y \cdot j\right)\\ \mathbf{elif}\;i \leq -3.9 \cdot 10^{+21}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;i \leq -2.2 \cdot 10^{-26}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;i \leq -4.6 \cdot 10^{-108}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;i \leq -6.3 \cdot 10^{-130}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;i \leq -3 \cdot 10^{-273}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;i \leq -1 \cdot 10^{-289}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;i \leq 4.5 \cdot 10^{-283}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;i \leq 2.5 \cdot 10^{-158}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;i \leq 1.05 \cdot 10^{-50}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;i \leq 1.9 \cdot 10^{+136}:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_1 - j \cdot \left(y \cdot i - t \cdot c\right)\\ \end{array} \]
Alternative 17
Accuracy50.8%
Cost2412
\[\begin{array}{l} t_1 := i \cdot \left(a \cdot b\right)\\ t_2 := b \cdot \left(a \cdot i - z \cdot c\right) + x \cdot \left(y \cdot z\right)\\ t_3 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_4 := c \cdot \left(z \cdot b\right)\\ t_5 := j \cdot \left(t \cdot c - y \cdot i\right) - t_4\\ t_6 := t_3 - t_4\\ \mathbf{if}\;i \leq -8.4 \cdot 10^{+136}:\\ \;\;\;\;i \cdot \left(a \cdot b - y \cdot j\right)\\ \mathbf{elif}\;i \leq -1060000000000:\\ \;\;\;\;t_1 + t_3\\ \mathbf{elif}\;i \leq -5.5 \cdot 10^{-26}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;i \leq -1.2 \cdot 10^{-107}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;i \leq -7 \cdot 10^{-130}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;i \leq -2.7 \cdot 10^{-273}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;i \leq -4.4 \cdot 10^{-290}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;i \leq 3.1 \cdot 10^{-283}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;i \leq 3.4 \cdot 10^{-158}:\\ \;\;\;\;t_6\\ \mathbf{elif}\;i \leq 3 \cdot 10^{-51}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;i \leq 2.1 \cdot 10^{+134}:\\ \;\;\;\;t_1 + z \cdot \left(x \cdot y - b \cdot c\right)\\ \mathbf{else}:\\ \;\;\;\;t_1 - j \cdot \left(y \cdot i - t \cdot c\right)\\ \end{array} \]
Alternative 18
Accuracy40.9%
Cost2292
\[\begin{array}{l} t_1 := c \cdot \left(t \cdot j - z \cdot b\right)\\ t_2 := i \cdot \left(a \cdot b - y \cdot j\right)\\ t_3 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_4 := y \cdot \left(x \cdot z - i \cdot j\right)\\ t_5 := a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{if}\;a \leq -1.26 \cdot 10^{+39}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;a \leq -0.0058:\\ \;\;\;\;t_4\\ \mathbf{elif}\;a \leq -1.5 \cdot 10^{-35}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;a \leq -1.2 \cdot 10^{-145}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;a \leq -2.2 \cdot 10^{-167}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;a \leq -2.7 \cdot 10^{-206}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;a \leq -2.1 \cdot 10^{-273}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;a \leq 1.12 \cdot 10^{-275}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;a \leq 1.06 \cdot 10^{-231}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;a \leq 1.9 \cdot 10^{-171}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;a \leq 2.8 \cdot 10^{-125}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;a \leq 8.4 \cdot 10^{-75}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;a \leq 1.12 \cdot 10^{+82}:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_5\\ \end{array} \]
Alternative 19
Accuracy41.2%
Cost2292
\[\begin{array}{l} t_1 := c \cdot \left(t \cdot j - z \cdot b\right)\\ t_2 := i \cdot \left(a \cdot b - y \cdot j\right)\\ t_3 := y \cdot \left(x \cdot z - i \cdot j\right)\\ t_4 := a \cdot \left(b \cdot i - x \cdot t\right)\\ t_5 := z \cdot \left(x \cdot y - b \cdot c\right)\\ \mathbf{if}\;a \leq -4.4 \cdot 10^{+40}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;a \leq -0.0062:\\ \;\;\;\;t_3\\ \mathbf{elif}\;a \leq -6.3 \cdot 10^{-37}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;a \leq -3.2 \cdot 10^{-144}:\\ \;\;\;\;j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{elif}\;a \leq -2.2 \cdot 10^{-167}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;a \leq -4.5 \cdot 10^{-173}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;a \leq -1.45 \cdot 10^{-178}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;a \leq -3.1 \cdot 10^{-230}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;a \leq -6 \cdot 10^{-282}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;a \leq 1.24 \cdot 10^{-179}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;a \leq 4.1 \cdot 10^{-125}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;a \leq 8.5 \cdot 10^{-75}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;a \leq 1.12 \cdot 10^{+82}:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_4\\ \end{array} \]
Alternative 20
Accuracy55.2%
Cost2272
\[\begin{array}{l} t_1 := x \cdot \left(y \cdot z - t \cdot a\right) - j \cdot \left(y \cdot i - t \cdot c\right)\\ t_2 := j \cdot \left(t \cdot c - y \cdot i\right)\\ t_3 := t_2 + a \cdot \left(b \cdot i - x \cdot t\right)\\ t_4 := t_2 + b \cdot \left(a \cdot i - z \cdot c\right)\\ \mathbf{if}\;y \leq -1.45 \cdot 10^{+77}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;y \leq -8.8 \cdot 10^{+40}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq -6.4 \cdot 10^{-22}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;y \leq -1.65 \cdot 10^{-100}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq -9.3 \cdot 10^{-153}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;y \leq 1.6 \cdot 10^{-259}:\\ \;\;\;\;i \cdot \left(a \cdot b\right) + z \cdot \left(x \cdot y - b \cdot c\right)\\ \mathbf{elif}\;y \leq 1.2 \cdot 10^{-74}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;y \leq 3.7 \cdot 10^{+115}:\\ \;\;\;\;t_4\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z - i \cdot j\right)\\ \end{array} \]
Alternative 21
Accuracy58.8%
Cost2268
\[\begin{array}{l} t_1 := c \cdot \left(t \cdot j\right)\\ t_2 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_3 := b \cdot \left(a \cdot i - z \cdot c\right)\\ t_4 := \left(t_1 - a \cdot \left(x \cdot t\right)\right) + t_3\\ t_5 := j \cdot \left(t \cdot c - y \cdot i\right) + t_3\\ \mathbf{if}\;y \leq -7.5 \cdot 10^{+75}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;y \leq -5.1 \cdot 10^{+39}:\\ \;\;\;\;t_2 - j \cdot \left(y \cdot i - t \cdot c\right)\\ \mathbf{elif}\;y \leq -1.62 \cdot 10^{-34}:\\ \;\;\;\;t_5\\ \mathbf{elif}\;y \leq -1.65 \cdot 10^{-100}:\\ \;\;\;\;\left(t_1 + t_2\right) - c \cdot \left(z \cdot b\right)\\ \mathbf{elif}\;y \leq -7.5 \cdot 10^{-192}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;y \leq -5.8 \cdot 10^{-257}:\\ \;\;\;\;i \cdot \left(a \cdot b\right) + z \cdot \left(x \cdot y - b \cdot c\right)\\ \mathbf{elif}\;y \leq 1.95 \cdot 10^{+115}:\\ \;\;\;\;t_4\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z - i \cdot j\right)\\ \end{array} \]
Alternative 22
Accuracy41.4%
Cost2156
\[\begin{array}{l} t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_2 := i \cdot \left(a \cdot b - y \cdot j\right)\\ t_3 := x \cdot \left(y \cdot z\right) - b \cdot \left(z \cdot c\right)\\ \mathbf{if}\;i \leq -3.8 \cdot 10^{+136}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;i \leq -4 \cdot 10^{+97}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;i \leq -4 \cdot 10^{+21}:\\ \;\;\;\;y \cdot \left(x \cdot z\right) + i \cdot \left(a \cdot b\right)\\ \mathbf{elif}\;i \leq -1.4 \cdot 10^{-25}:\\ \;\;\;\;j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{elif}\;i \leq -2.4 \cdot 10^{-108}:\\ \;\;\;\;b \cdot \left(a \cdot i - z \cdot c\right)\\ \mathbf{elif}\;i \leq -2.75 \cdot 10^{-219}:\\ \;\;\;\;t \cdot \left(c \cdot j - x \cdot a\right)\\ \mathbf{elif}\;i \leq 1.62 \cdot 10^{-282}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;i \leq 7 \cdot 10^{-224}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;i \leq 1.5 \cdot 10^{-83}:\\ \;\;\;\;c \cdot \left(t \cdot j - z \cdot b\right)\\ \mathbf{elif}\;i \leq 1.62 \cdot 10^{-41}:\\ \;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{elif}\;i \leq 1.35:\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;t_2\\ \end{array} \]
Alternative 23
Accuracy50.6%
Cost2148
\[\begin{array}{l} t_1 := t \cdot \left(c \cdot j - x \cdot a\right)\\ t_2 := i \cdot \left(a \cdot b\right)\\ t_3 := t_2 - j \cdot \left(y \cdot i - t \cdot c\right)\\ t_4 := t_2 + z \cdot \left(x \cdot y - b \cdot c\right)\\ \mathbf{if}\;z \leq -4.5 \cdot 10^{-42}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;z \leq -3.6 \cdot 10^{-94}:\\ \;\;\;\;y \cdot \left(x \cdot z - i \cdot j\right)\\ \mathbf{elif}\;z \leq -3.3 \cdot 10^{-105}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;z \leq -1.6 \cdot 10^{-147}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;z \leq -7.2 \cdot 10^{-275}:\\ \;\;\;\;i \cdot \left(a \cdot b - y \cdot j\right)\\ \mathbf{elif}\;z \leq -1.42 \cdot 10^{-286}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;z \leq 2.1 \cdot 10^{-288}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;z \leq 8 \cdot 10^{-271}:\\ \;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{elif}\;z \leq 4.8 \cdot 10^{-88}:\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;t_4\\ \end{array} \]
Alternative 24
Accuracy41.4%
Cost2028
\[\begin{array}{l} t_1 := x \cdot \left(y \cdot z - t \cdot a\right)\\ t_2 := c \cdot \left(t \cdot j - z \cdot b\right)\\ t_3 := i \cdot \left(a \cdot b - y \cdot j\right)\\ \mathbf{if}\;i \leq -1.9 \cdot 10^{+136}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;i \leq -3.3 \cdot 10^{+97}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;i \leq -1.65 \cdot 10^{+21}:\\ \;\;\;\;y \cdot \left(x \cdot z\right) + i \cdot \left(a \cdot b\right)\\ \mathbf{elif}\;i \leq -1.8 \cdot 10^{-25}:\\ \;\;\;\;j \cdot \left(t \cdot c - y \cdot i\right)\\ \mathbf{elif}\;i \leq -1.45 \cdot 10^{-108}:\\ \;\;\;\;b \cdot \left(a \cdot i - z \cdot c\right)\\ \mathbf{elif}\;i \leq -6.6 \cdot 10^{-221}:\\ \;\;\;\;t \cdot \left(c \cdot j - x \cdot a\right)\\ \mathbf{elif}\;i \leq 3.6 \cdot 10^{-283}:\\ \;\;\;\;z \cdot \left(x \cdot y - b \cdot c\right)\\ \mathbf{elif}\;i \leq 3 \cdot 10^{-227}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;i \leq 5.6 \cdot 10^{-83}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;i \leq 3.1 \cdot 10^{-42}:\\ \;\;\;\;a \cdot \left(b \cdot i - x \cdot t\right)\\ \mathbf{elif}\;i \leq 32:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;t_3\\ \end{array} \]
Alternative 25
Accuracy56.0%
Cost2008
\[\begin{array}{l} t_1 := j \cdot \left(t \cdot c - y \cdot i\right) + a \cdot \left(b \cdot i - x \cdot t\right)\\ t_2 := i \cdot \left(a \cdot b\right) + z \cdot \left(x \cdot y - b \cdot c\right)\\ \mathbf{if}\;y \leq -1.6 \cdot 10^{-100}:\\ \;\;\;\;x \cdot \left(y \cdot z - t \cdot a\right) - j \cdot \left(y \cdot i - t \cdot c\right)\\ \mathbf{elif}\;y \leq -9.2 \cdot 10^{-153}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 6 \cdot 10^{-260}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 3.9 \cdot 10^{-63}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 6.1 \cdot 10^{-18}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 1.36 \cdot 10^{+115}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z - i \cdot j\right)\\ \end{array} \]
Alternative 26
Accuracy22.8%
Cost1704
\[\begin{array}{l} t_1 := a \cdot \left(b \cdot i\right)\\ t_2 := y \cdot \left(-i \cdot j\right)\\ \mathbf{if}\;y \leq -1.65 \cdot 10^{+122}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq -1.22 \cdot 10^{-95}:\\ \;\;\;\;z \cdot \left(x \cdot y\right)\\ \mathbf{elif}\;y \leq -1.25 \cdot 10^{-229}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq -4.1 \cdot 10^{-277}:\\ \;\;\;\;\left(z \cdot b\right) \cdot \left(-c\right)\\ \mathbf{elif}\;y \leq 9.2 \cdot 10^{-291}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 10^{-258}:\\ \;\;\;\;\left(z \cdot c\right) \cdot \left(-b\right)\\ \mathbf{elif}\;y \leq 2.1 \cdot 10^{-223}:\\ \;\;\;\;i \cdot \left(a \cdot b\right)\\ \mathbf{elif}\;y \leq 2.4 \cdot 10^{-192}:\\ \;\;\;\;a \cdot \left(x \cdot \left(-t\right)\right)\\ \mathbf{elif}\;y \leq 3500000:\\ \;\;\;\;b \cdot \left(a \cdot i\right)\\ \mathbf{elif}\;y \leq 1.04 \cdot 10^{+272}:\\ \;\;\;\;t_2\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 27
Accuracy31.3%
Cost1632
\[\begin{array}{l} t_1 := z \cdot \left(b \cdot \left(-c\right)\right)\\ t_2 := a \cdot \left(b \cdot i - x \cdot t\right)\\ t_3 := y \cdot \left(-i \cdot j\right)\\ \mathbf{if}\;y \leq -2.5 \cdot 10^{+119}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;y \leq -3.1 \cdot 10^{-227}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq -1.15 \cdot 10^{-253}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 3.05 \cdot 10^{-290}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 1.2 \cdot 10^{-259}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 1.35 \cdot 10^{-62}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 1.15 \cdot 10^{-22}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 10500000000:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 1.85 \cdot 10^{+267}:\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 28
Accuracy32.9%
Cost1632
\[\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)\\ t_3 := y \cdot \left(-i \cdot j\right)\\ t_4 := b \cdot \left(a \cdot i - z \cdot c\right)\\ \mathbf{if}\;y \leq -3.3 \cdot 10^{+124}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;y \leq -1.65 \cdot 10^{+73}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq -2 \cdot 10^{+43}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;y \leq -5.1 \cdot 10^{-73}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq -1.9 \cdot 10^{-191}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 7.5 \cdot 10^{-260}:\\ \;\;\;\;t_4\\ \mathbf{elif}\;y \leq 2 \cdot 10^{-75}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 6400000000:\\ \;\;\;\;t_4\\ \mathbf{elif}\;y \leq 6.3 \cdot 10^{+265}:\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 29
Accuracy22.9%
Cost1440
\[\begin{array}{l} t_1 := y \cdot \left(-i \cdot j\right)\\ \mathbf{if}\;y \leq -8 \cdot 10^{+121}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq -1.65 \cdot 10^{-95}:\\ \;\;\;\;z \cdot \left(x \cdot y\right)\\ \mathbf{elif}\;y \leq -1.3 \cdot 10^{-229}:\\ \;\;\;\;a \cdot \left(b \cdot i\right)\\ \mathbf{elif}\;y \leq -1.02 \cdot 10^{-277}:\\ \;\;\;\;\left(z \cdot b\right) \cdot \left(-c\right)\\ \mathbf{elif}\;y \leq 4.15 \cdot 10^{-224}:\\ \;\;\;\;i \cdot \left(a \cdot b\right)\\ \mathbf{elif}\;y \leq 1.22 \cdot 10^{-191}:\\ \;\;\;\;a \cdot \left(x \cdot \left(-t\right)\right)\\ \mathbf{elif}\;y \leq 410000:\\ \;\;\;\;b \cdot \left(a \cdot i\right)\\ \mathbf{elif}\;y \leq 2 \cdot 10^{+263}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 30
Accuracy22.7%
Cost1440
\[\begin{array}{l} t_1 := z \cdot \left(b \cdot \left(-c\right)\right)\\ t_2 := b \cdot \left(a \cdot i\right)\\ t_3 := y \cdot \left(-i \cdot j\right)\\ \mathbf{if}\;y \leq -1.58 \cdot 10^{+122}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;y \leq -8.6 \cdot 10^{-97}:\\ \;\;\;\;z \cdot \left(x \cdot y\right)\\ \mathbf{elif}\;y \leq -1.15 \cdot 10^{-229}:\\ \;\;\;\;a \cdot \left(b \cdot i\right)\\ \mathbf{elif}\;y \leq 2.15 \cdot 10^{-259}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 6.5 \cdot 10^{-48}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 5 \cdot 10^{-15}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 300000:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 7.5 \cdot 10^{+271}:\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 31
Accuracy32.8%
Cost1368
\[\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 := y \cdot \left(-i \cdot j\right)\\ \mathbf{if}\;y \leq -5.4 \cdot 10^{+124}:\\ \;\;\;\;t_3\\ \mathbf{elif}\;y \leq -7.5 \cdot 10^{-21}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq -1.8 \cdot 10^{-190}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 7 \cdot 10^{-260}:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 1.36 \cdot 10^{-76}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq 2900000000:\\ \;\;\;\;t_2\\ \mathbf{elif}\;y \leq 4.8 \cdot 10^{+266}:\\ \;\;\;\;t_3\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 32
Accuracy22.9%
Cost1176
\[\begin{array}{l} t_1 := y \cdot \left(-i \cdot j\right)\\ \mathbf{if}\;y \leq -1.18 \cdot 10^{+122}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq -5.7 \cdot 10^{-98}:\\ \;\;\;\;z \cdot \left(x \cdot y\right)\\ \mathbf{elif}\;y \leq 5.4 \cdot 10^{-224}:\\ \;\;\;\;a \cdot \left(b \cdot i\right)\\ \mathbf{elif}\;y \leq 5.2 \cdot 10^{-192}:\\ \;\;\;\;a \cdot \left(x \cdot \left(-t\right)\right)\\ \mathbf{elif}\;y \leq 9500000:\\ \;\;\;\;b \cdot \left(a \cdot i\right)\\ \mathbf{elif}\;y \leq 2.45 \cdot 10^{+269}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 33
Accuracy22.9%
Cost912
\[\begin{array}{l} t_1 := y \cdot \left(-i \cdot j\right)\\ \mathbf{if}\;y \leq -7.8 \cdot 10^{+121}:\\ \;\;\;\;t_1\\ \mathbf{elif}\;y \leq -1.1 \cdot 10^{-96}:\\ \;\;\;\;z \cdot \left(x \cdot y\right)\\ \mathbf{elif}\;y \leq 8000000000:\\ \;\;\;\;a \cdot \left(b \cdot i\right)\\ \mathbf{elif}\;y \leq 1.35 \cdot 10^{+274}:\\ \;\;\;\;t_1\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 34
Accuracy22.8%
Cost585
\[\begin{array}{l} \mathbf{if}\;x \leq -2.4 \cdot 10^{-13} \lor \neg \left(x \leq 8 \cdot 10^{-13}\right):\\ \;\;\;\;x \cdot \left(y \cdot z\right)\\ \mathbf{else}:\\ \;\;\;\;a \cdot \left(b \cdot i\right)\\ \end{array} \]
Alternative 35
Accuracy22.0%
Cost584
\[\begin{array}{l} \mathbf{if}\;y \leq -5.1 \cdot 10^{-90}:\\ \;\;\;\;x \cdot \left(y \cdot z\right)\\ \mathbf{elif}\;y \leq 4050000000000:\\ \;\;\;\;a \cdot \left(b \cdot i\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 36
Accuracy21.8%
Cost584
\[\begin{array}{l} \mathbf{if}\;y \leq -1.75 \cdot 10^{-95}:\\ \;\;\;\;z \cdot \left(x \cdot y\right)\\ \mathbf{elif}\;y \leq 1.6 \cdot 10^{+15}:\\ \;\;\;\;a \cdot \left(b \cdot i\right)\\ \mathbf{else}:\\ \;\;\;\;y \cdot \left(x \cdot z\right)\\ \end{array} \]
Alternative 37
Accuracy16.9%
Cost452
\[\begin{array}{l} \mathbf{if}\;a \leq 10^{+111}:\\ \;\;\;\;i \cdot \left(a \cdot b\right)\\ \mathbf{else}:\\ \;\;\;\;a \cdot \left(b \cdot i\right)\\ \end{array} \]
Alternative 38
Accuracy16.4%
Cost320
\[a \cdot \left(b \cdot i\right) \]
Alternative 39
Accuracy16.2%
Cost320
\[b \cdot \left(a \cdot i\right) \]

Error

Reproduce?

herbie shell --seed 2023151 
(FPCore (x y z t a b c i j)
  :name "Linear.Matrix:det33 from linear-1.19.1.3"
  :precision binary64

  :herbie-target
  (if (< t -8.120978919195912e-33) (- (* x (- (* z y) (* a t))) (- (* b (- (* z c) (* a i))) (* (- (* c t) (* y i)) j))) (if (< t -4.712553818218485e-169) (+ (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a)))) (/ (* j (- (pow (* c t) 2.0) (pow (* i y) 2.0))) (+ (* c t) (* i y)))) (if (< t -7.633533346031584e-308) (- (* x (- (* z y) (* a t))) (- (* b (- (* z c) (* a i))) (* (- (* c t) (* y i)) j))) (if (< t 1.0535888557455487e-139) (+ (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a)))) (/ (* j (- (pow (* c t) 2.0) (pow (* i y) 2.0))) (+ (* c t) (* i y)))) (- (* x (- (* z y) (* a t))) (- (* b (- (* z c) (* a i))) (* (- (* c t) (* y i)) j)))))))

  (+ (- (* x (- (* y z) (* t a))) (* b (- (* c z) (* i a)))) (* j (- (* c t) (* i y)))))