\[ \begin{array}{c}[t, a] = \mathsf{sort}([t, a])\\ \end{array} \]
Math FPCore C Julia Wolfram TeX \[\frac{\left(\left(x \cdot 9\right) \cdot y - \left(\left(z \cdot 4\right) \cdot t\right) \cdot a\right) + b}{z \cdot c}
\]
↓
\[\begin{array}{l}
t_1 := \frac{\mathsf{fma}\left(x, 9 \cdot y, b\right)}{z}\\
\mathbf{if}\;z \leq -0.0015:\\
\;\;\;\;\frac{t_1 + t \cdot \left(a \cdot -4\right)}{c}\\
\mathbf{elif}\;z \leq 1.46 \cdot 10^{-29}:\\
\;\;\;\;\frac{b + \left(y \cdot \left(x \cdot 9\right) - a \cdot \left(t \cdot \left(z \cdot 4\right)\right)\right)}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(t, a \cdot -4, t_1\right) \cdot {c}^{-1}\\
\end{array}
\]
(FPCore (x y z t a b c)
:precision binary64
(/ (+ (- (* (* x 9.0) y) (* (* (* z 4.0) t) a)) b) (* z c))) ↓
(FPCore (x y z t a b c)
:precision binary64
(let* ((t_1 (/ (fma x (* 9.0 y) b) z)))
(if (<= z -0.0015)
(/ (+ t_1 (* t (* a -4.0))) c)
(if (<= z 1.46e-29)
(/ (+ b (- (* y (* x 9.0)) (* a (* t (* z 4.0))))) (* z c))
(* (fma t (* a -4.0) t_1) (pow c -1.0)))))) double code(double x, double y, double z, double t, double a, double b, double c) {
return ((((x * 9.0) * y) - (((z * 4.0) * t) * a)) + b) / (z * c);
}
↓
double code(double x, double y, double z, double t, double a, double b, double c) {
double t_1 = fma(x, (9.0 * y), b) / z;
double tmp;
if (z <= -0.0015) {
tmp = (t_1 + (t * (a * -4.0))) / c;
} else if (z <= 1.46e-29) {
tmp = (b + ((y * (x * 9.0)) - (a * (t * (z * 4.0))))) / (z * c);
} else {
tmp = fma(t, (a * -4.0), t_1) * pow(c, -1.0);
}
return tmp;
}
function code(x, y, z, t, a, b, c)
return Float64(Float64(Float64(Float64(Float64(x * 9.0) * y) - Float64(Float64(Float64(z * 4.0) * t) * a)) + b) / Float64(z * c))
end
↓
function code(x, y, z, t, a, b, c)
t_1 = Float64(fma(x, Float64(9.0 * y), b) / z)
tmp = 0.0
if (z <= -0.0015)
tmp = Float64(Float64(t_1 + Float64(t * Float64(a * -4.0))) / c);
elseif (z <= 1.46e-29)
tmp = Float64(Float64(b + Float64(Float64(y * Float64(x * 9.0)) - Float64(a * Float64(t * Float64(z * 4.0))))) / Float64(z * c));
else
tmp = Float64(fma(t, Float64(a * -4.0), t_1) * (c ^ -1.0));
end
return tmp
end
code[x_, y_, z_, t_, a_, b_, c_] := N[(N[(N[(N[(N[(x * 9.0), $MachinePrecision] * y), $MachinePrecision] - N[(N[(N[(z * 4.0), $MachinePrecision] * t), $MachinePrecision] * a), $MachinePrecision]), $MachinePrecision] + b), $MachinePrecision] / N[(z * c), $MachinePrecision]), $MachinePrecision]
↓
code[x_, y_, z_, t_, a_, b_, c_] := Block[{t$95$1 = N[(N[(x * N[(9.0 * y), $MachinePrecision] + b), $MachinePrecision] / z), $MachinePrecision]}, If[LessEqual[z, -0.0015], N[(N[(t$95$1 + N[(t * N[(a * -4.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / c), $MachinePrecision], If[LessEqual[z, 1.46e-29], N[(N[(b + N[(N[(y * N[(x * 9.0), $MachinePrecision]), $MachinePrecision] - N[(a * N[(t * N[(z * 4.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] / N[(z * c), $MachinePrecision]), $MachinePrecision], N[(N[(t * N[(a * -4.0), $MachinePrecision] + t$95$1), $MachinePrecision] * N[Power[c, -1.0], $MachinePrecision]), $MachinePrecision]]]]
\frac{\left(\left(x \cdot 9\right) \cdot y - \left(\left(z \cdot 4\right) \cdot t\right) \cdot a\right) + b}{z \cdot c}
↓
\begin{array}{l}
t_1 := \frac{\mathsf{fma}\left(x, 9 \cdot y, b\right)}{z}\\
\mathbf{if}\;z \leq -0.0015:\\
\;\;\;\;\frac{t_1 + t \cdot \left(a \cdot -4\right)}{c}\\
\mathbf{elif}\;z \leq 1.46 \cdot 10^{-29}:\\
\;\;\;\;\frac{b + \left(y \cdot \left(x \cdot 9\right) - a \cdot \left(t \cdot \left(z \cdot 4\right)\right)\right)}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(t, a \cdot -4, t_1\right) \cdot {c}^{-1}\\
\end{array}
Alternatives Alternative 1 Accuracy 91.6% Cost 20360
\[\begin{array}{l}
t_1 := \frac{\mathsf{fma}\left(x, 9 \cdot y, b\right)}{z}\\
\mathbf{if}\;z \leq -0.0015:\\
\;\;\;\;\frac{t_1 + t \cdot \left(a \cdot -4\right)}{c}\\
\mathbf{elif}\;z \leq 1.46 \cdot 10^{-29}:\\
\;\;\;\;\frac{b + \left(y \cdot \left(x \cdot 9\right) - a \cdot \left(t \cdot \left(z \cdot 4\right)\right)\right)}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(t, a \cdot -4, t_1\right) \cdot {c}^{-1}\\
\end{array}
\]
Alternative 2 Accuracy 87.5% Cost 9864
\[\begin{array}{l}
t_1 := \frac{b + \left(y \cdot \left(x \cdot 9\right) - a \cdot \left(t \cdot \left(z \cdot 4\right)\right)\right)}{z \cdot c}\\
\mathbf{if}\;t_1 \leq -5 \cdot 10^{-316}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq 0:\\
\;\;\;\;\frac{t \cdot \left(a \cdot -4\right) + {\left(z \cdot \frac{1}{b}\right)}^{-1}}{c}\\
\mathbf{elif}\;t_1 \leq \infty:\\
\;\;\;\;\frac{b + \left(x \cdot \left(9 \cdot y\right) - \left(z \cdot 4\right) \cdot \left(t \cdot a\right)\right)}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;-4 \cdot \left(t \cdot \frac{a}{c}\right)\\
\end{array}
\]
Alternative 3 Accuracy 91.6% Cost 7752
\[\begin{array}{l}
t_1 := t \cdot \left(a \cdot -4\right)\\
t_2 := \mathsf{fma}\left(x, 9 \cdot y, b\right)\\
\mathbf{if}\;z \leq -0.0005:\\
\;\;\;\;\frac{\frac{t_2}{z} + t_1}{c}\\
\mathbf{elif}\;z \leq 8 \cdot 10^{+16}:\\
\;\;\;\;\frac{b + \left(y \cdot \left(x \cdot 9\right) - a \cdot \left(t \cdot \left(z \cdot 4\right)\right)\right)}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;\frac{t_1 + t_2 \cdot \frac{1}{z}}{c}\\
\end{array}
\]
Alternative 4 Accuracy 91.6% Cost 7625
\[\begin{array}{l}
\mathbf{if}\;z \leq -0.0004 \lor \neg \left(z \leq 5000000000000\right):\\
\;\;\;\;\frac{\frac{\mathsf{fma}\left(x, 9 \cdot y, b\right)}{z} + t \cdot \left(a \cdot -4\right)}{c}\\
\mathbf{else}:\\
\;\;\;\;\frac{b + \left(y \cdot \left(x \cdot 9\right) - a \cdot \left(t \cdot \left(z \cdot 4\right)\right)\right)}{z \cdot c}\\
\end{array}
\]
Alternative 5 Accuracy 87.5% Cost 5068
\[\begin{array}{l}
t_1 := \frac{b + \left(y \cdot \left(x \cdot 9\right) - a \cdot \left(t \cdot \left(z \cdot 4\right)\right)\right)}{z \cdot c}\\
\mathbf{if}\;t_1 \leq -5 \cdot 10^{-316}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq 0:\\
\;\;\;\;\frac{t \cdot \left(a \cdot -4\right) + \frac{b}{z}}{c}\\
\mathbf{elif}\;t_1 \leq \infty:\\
\;\;\;\;\frac{b + \left(x \cdot \left(9 \cdot y\right) - \left(z \cdot 4\right) \cdot \left(t \cdot a\right)\right)}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;-4 \cdot \left(t \cdot \frac{a}{c}\right)\\
\end{array}
\]
Alternative 6 Accuracy 49.4% Cost 1764
\[\begin{array}{l}
t_1 := 9 \cdot \left(\frac{y}{c} \cdot \frac{x}{z}\right)\\
t_2 := -4 \cdot \left(t \cdot \frac{a}{c}\right)\\
t_3 := \frac{b \cdot \frac{1}{c}}{z}\\
\mathbf{if}\;t \leq -7.5 \cdot 10^{+111}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq -8 \cdot 10^{+71}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -6.2 \cdot 10^{+32}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq -0.0052:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -4.7 \cdot 10^{-147}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{elif}\;t \leq -4.8 \cdot 10^{-204}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 7.2 \cdot 10^{-282}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq 1.5 \cdot 10^{-226}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 2.1 \cdot 10^{-111}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 7 Accuracy 49.4% Cost 1632
\[\begin{array}{l}
t_1 := 9 \cdot \frac{y \cdot \frac{x}{c}}{z}\\
t_2 := -4 \cdot \left(t \cdot \frac{a}{c}\right)\\
t_3 := \frac{b \cdot \frac{1}{c}}{z}\\
\mathbf{if}\;t \leq -9.5 \cdot 10^{+111}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq -7.2 \cdot 10^{+71}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -7 \cdot 10^{+28}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq -0.00013:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -2.8 \cdot 10^{-204}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{elif}\;t \leq 3.8 \cdot 10^{-284}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq 2.4 \cdot 10^{-225}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 1.15 \cdot 10^{-112}:\\
\;\;\;\;9 \cdot \frac{y}{\frac{z \cdot c}{x}}\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 8 Accuracy 49.0% Cost 1632
\[\begin{array}{l}
t_1 := 9 \cdot \frac{y \cdot \frac{x}{c}}{z}\\
t_2 := -4 \cdot \left(t \cdot \frac{a}{c}\right)\\
t_3 := \frac{b \cdot \frac{1}{c}}{z}\\
\mathbf{if}\;t \leq -2.2 \cdot 10^{+113}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq -6.6 \cdot 10^{+71}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -1.25 \cdot 10^{+29}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq -4.5 \cdot 10^{-5}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -3.6 \cdot 10^{-204}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{elif}\;t \leq 8.5 \cdot 10^{-281}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq 1.3 \cdot 10^{-224}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 8 \cdot 10^{-114}:\\
\;\;\;\;\frac{y}{\frac{z}{x}} \cdot \frac{9}{c}\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 9 Accuracy 49.1% Cost 1632
\[\begin{array}{l}
t_1 := 9 \cdot \frac{y \cdot \frac{x}{c}}{z}\\
t_2 := -4 \cdot \left(t \cdot \frac{a}{c}\right)\\
t_3 := \frac{b \cdot \frac{1}{c}}{z}\\
\mathbf{if}\;t \leq -7.5 \cdot 10^{+111}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t \leq -3.5 \cdot 10^{+71}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -1.22 \cdot 10^{+29}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq -1.65 \cdot 10^{-7}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t \leq -4.8 \cdot 10^{-204}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{elif}\;t \leq 1.55 \cdot 10^{-280}:\\
\;\;\;\;\frac{9 \cdot \frac{y}{\frac{c}{x}}}{z}\\
\mathbf{elif}\;t \leq 7.2 \cdot 10^{-227}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t \leq 1.35 \cdot 10^{-113}:\\
\;\;\;\;\frac{y}{\frac{z}{x}} \cdot \frac{9}{c}\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 10 Accuracy 67.1% Cost 1492
\[\begin{array}{l}
t_1 := \frac{t \cdot \left(a \cdot -4\right) + \frac{b}{z}}{c}\\
\mathbf{if}\;x \leq -3.6 \cdot 10^{+227}:\\
\;\;\;\;\frac{b + 9 \cdot \left(x \cdot y\right)}{z \cdot c}\\
\mathbf{elif}\;x \leq -8 \cdot 10^{+163}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -3.1 \cdot 10^{+34}:\\
\;\;\;\;\frac{\frac{b}{z} + 9 \cdot \frac{x \cdot y}{z}}{c}\\
\mathbf{elif}\;x \leq 1.8 \cdot 10^{-143}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 2.2 \cdot 10^{+108}:\\
\;\;\;\;\left(b + x \cdot \left(9 \cdot y\right)\right) \cdot \frac{\frac{1}{z}}{c}\\
\mathbf{else}:\\
\;\;\;\;9 \cdot \left(\frac{y}{c} \cdot \frac{x}{z}\right)\\
\end{array}
\]
Alternative 11 Accuracy 84.4% Cost 1480
\[\begin{array}{l}
t_1 := t \cdot \left(a \cdot -4\right)\\
\mathbf{if}\;z \leq -1.28 \cdot 10^{+112}:\\
\;\;\;\;\frac{t_1 + \frac{9 \cdot \left(x \cdot y\right)}{z}}{c}\\
\mathbf{elif}\;z \leq 4 \cdot 10^{+133}:\\
\;\;\;\;\frac{b + \left(x \cdot \left(9 \cdot y\right) - \left(z \cdot 4\right) \cdot \left(t \cdot a\right)\right)}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;\frac{t_1 + \frac{b}{z}}{c}\\
\end{array}
\]
Alternative 12 Accuracy 47.6% Cost 1368
\[\begin{array}{l}
t_1 := -4 \cdot \left(t \cdot \frac{a}{c}\right)\\
\mathbf{if}\;x \leq -1.6 \cdot 10^{+22}:\\
\;\;\;\;9 \cdot \left(\frac{x}{c} \cdot \frac{y}{z}\right)\\
\mathbf{elif}\;x \leq -1.65 \cdot 10^{-126}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -1.62 \cdot 10^{-158}:\\
\;\;\;\;\frac{b \cdot \frac{1}{c}}{z}\\
\mathbf{elif}\;x \leq -1.06 \cdot 10^{-225}:\\
\;\;\;\;\frac{-4 \cdot \left(t \cdot a\right)}{c}\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{-234}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{elif}\;x \leq 1.75 \cdot 10^{-143}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;9 \cdot \left(\frac{y}{c} \cdot \frac{x}{z}\right)\\
\end{array}
\]
Alternative 13 Accuracy 67.0% Cost 1364
\[\begin{array}{l}
t_1 := \frac{t \cdot \left(a \cdot -4\right) + \frac{b}{z}}{c}\\
t_2 := \frac{b + 9 \cdot \left(x \cdot y\right)}{z \cdot c}\\
\mathbf{if}\;x \leq -3.6 \cdot 10^{+227}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;x \leq -9.5 \cdot 10^{+163}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -1.9 \cdot 10^{+33}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;x \leq 8.6 \cdot 10^{-144}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 8.5 \cdot 10^{+72}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;9 \cdot \left(\frac{y}{c} \cdot \frac{x}{z}\right)\\
\end{array}
\]
Alternative 14 Accuracy 67.0% Cost 1364
\[\begin{array}{l}
t_1 := \frac{t \cdot \left(a \cdot -4\right) + \frac{b}{z}}{c}\\
t_2 := b + 9 \cdot \left(x \cdot y\right)\\
t_3 := \frac{t_2}{z \cdot c}\\
\mathbf{if}\;x \leq -3.8 \cdot 10^{+227}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;x \leq -8.5 \cdot 10^{+163}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -1 \cdot 10^{+34}:\\
\;\;\;\;\frac{\frac{t_2}{z}}{c}\\
\mathbf{elif}\;x \leq 1.8 \cdot 10^{-143}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 6 \cdot 10^{+72}:\\
\;\;\;\;t_3\\
\mathbf{else}:\\
\;\;\;\;9 \cdot \left(\frac{y}{c} \cdot \frac{x}{z}\right)\\
\end{array}
\]
Alternative 15 Accuracy 66.6% Cost 1364
\[\begin{array}{l}
t_1 := \frac{t \cdot \left(a \cdot -4\right) + \frac{b}{z}}{c}\\
t_2 := \frac{b + 9 \cdot \left(x \cdot y\right)}{z \cdot c}\\
\mathbf{if}\;x \leq -8.4 \cdot 10^{+227}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;x \leq -7 \cdot 10^{+163}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -1.25 \cdot 10^{+35}:\\
\;\;\;\;\frac{\frac{b}{z} + 9 \cdot \frac{x \cdot y}{z}}{c}\\
\mathbf{elif}\;x \leq 1.6 \cdot 10^{-143}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq 2.4 \cdot 10^{+71}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;9 \cdot \left(\frac{y}{c} \cdot \frac{x}{z}\right)\\
\end{array}
\]
Alternative 16 Accuracy 69.5% Cost 1096
\[\begin{array}{l}
t_1 := t \cdot \left(a \cdot -4\right)\\
\mathbf{if}\;t \leq -1.5 \cdot 10^{+89}:\\
\;\;\;\;\frac{t_1 + \frac{9 \cdot \left(x \cdot y\right)}{z}}{c}\\
\mathbf{elif}\;t \leq 1.32 \cdot 10^{-123}:\\
\;\;\;\;\frac{\frac{b}{z} + 9 \cdot \frac{x \cdot y}{z}}{c}\\
\mathbf{else}:\\
\;\;\;\;\frac{t_1 + \frac{b}{z}}{c}\\
\end{array}
\]
Alternative 17 Accuracy 51.6% Cost 972
\[\begin{array}{l}
t_1 := -4 \cdot \left(t \cdot \frac{a}{c}\right)\\
\mathbf{if}\;z \leq -3.4 \cdot 10^{+19}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 9 \cdot 10^{-219}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{elif}\;z \leq 1.65 \cdot 10^{+30}:\\
\;\;\;\;9 \cdot \frac{y}{\frac{z \cdot c}{x}}\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
Alternative 18 Accuracy 51.3% Cost 972
\[\begin{array}{l}
t_1 := -4 \cdot \left(t \cdot \frac{a}{c}\right)\\
\mathbf{if}\;z \leq -5.8 \cdot 10^{+21}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 2.05 \cdot 10^{-219}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{elif}\;z \leq 2.05 \cdot 10^{+30}:\\
\;\;\;\;9 \cdot \frac{x \cdot y}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
Alternative 19 Accuracy 67.1% Cost 969
\[\begin{array}{l}
\mathbf{if}\;t \leq -8 \cdot 10^{+111} \lor \neg \left(t \leq 5.6 \cdot 10^{-32}\right):\\
\;\;\;\;-4 \cdot \left(t \cdot \frac{a}{c}\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{b + 9 \cdot \left(x \cdot y\right)}{z \cdot c}\\
\end{array}
\]
Alternative 20 Accuracy 49.2% Cost 713
\[\begin{array}{l}
\mathbf{if}\;t \leq -1.6 \cdot 10^{+114} \lor \neg \left(t \leq 2.1 \cdot 10^{-73}\right):\\
\;\;\;\;-4 \cdot \left(t \cdot \frac{a}{c}\right)\\
\mathbf{else}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\end{array}
\]
Alternative 21 Accuracy 50.6% Cost 712
\[\begin{array}{l}
\mathbf{if}\;t \leq -3.4 \cdot 10^{+89}:\\
\;\;\;\;-4 \cdot \frac{a}{\frac{c}{t}}\\
\mathbf{elif}\;t \leq 2.6 \cdot 10^{-73}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;-4 \cdot \left(t \cdot \frac{a}{c}\right)\\
\end{array}
\]
Alternative 22 Accuracy 50.5% Cost 712
\[\begin{array}{l}
\mathbf{if}\;t \leq -3.8 \cdot 10^{+88}:\\
\;\;\;\;-4 \cdot \frac{a}{\frac{c}{t}}\\
\mathbf{elif}\;t \leq 5.2 \cdot 10^{-74}:\\
\;\;\;\;\frac{b \cdot \frac{1}{c}}{z}\\
\mathbf{else}:\\
\;\;\;\;-4 \cdot \left(t \cdot \frac{a}{c}\right)\\
\end{array}
\]
Alternative 23 Accuracy 34.9% Cost 320
\[\frac{b}{z \cdot c}
\]