\[ \begin{array}{c}[x, y] = \mathsf{sort}([x, y])\\ [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{\left(\left(x \cdot 9\right) \cdot y - \left(\left(z \cdot 4\right) \cdot t\right) \cdot a\right) + b}{z \cdot c}\\
t_2 := \frac{\frac{b}{c}}{z} + \left(\frac{x}{z} \cdot \frac{9 \cdot y}{c} + \frac{t \cdot a}{c} \cdot -4\right)\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t_1 \leq -2 \cdot 10^{-234}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq 5 \cdot 10^{-67}:\\
\;\;\;\;\frac{\mathsf{fma}\left(t, a \cdot -4, \frac{\mathsf{fma}\left(x, 9 \cdot y, b\right)}{z}\right)}{c}\\
\mathbf{elif}\;t_1 \leq 4 \cdot 10^{+298}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\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 (/ (+ (- (* (* x 9.0) y) (* (* (* z 4.0) t) a)) b) (* z c)))
(t_2
(+
(/ (/ b c) z)
(+ (* (/ x z) (/ (* 9.0 y) c)) (* (/ (* t a) c) -4.0)))))
(if (<= t_1 (- INFINITY))
t_2
(if (<= t_1 -2e-234)
t_1
(if (<= t_1 5e-67)
(/ (fma t (* a -4.0) (/ (fma x (* 9.0 y) b) z)) c)
(if (<= t_1 4e+298) t_1 t_2)))))) 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 = ((((x * 9.0) * y) - (((z * 4.0) * t) * a)) + b) / (z * c);
double t_2 = ((b / c) / z) + (((x / z) * ((9.0 * y) / c)) + (((t * a) / c) * -4.0));
double tmp;
if (t_1 <= -((double) INFINITY)) {
tmp = t_2;
} else if (t_1 <= -2e-234) {
tmp = t_1;
} else if (t_1 <= 5e-67) {
tmp = fma(t, (a * -4.0), (fma(x, (9.0 * y), b) / z)) / c;
} else if (t_1 <= 4e+298) {
tmp = t_1;
} else {
tmp = t_2;
}
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(Float64(Float64(Float64(Float64(x * 9.0) * y) - Float64(Float64(Float64(z * 4.0) * t) * a)) + b) / Float64(z * c))
t_2 = Float64(Float64(Float64(b / c) / z) + Float64(Float64(Float64(x / z) * Float64(Float64(9.0 * y) / c)) + Float64(Float64(Float64(t * a) / c) * -4.0)))
tmp = 0.0
if (t_1 <= Float64(-Inf))
tmp = t_2;
elseif (t_1 <= -2e-234)
tmp = t_1;
elseif (t_1 <= 5e-67)
tmp = Float64(fma(t, Float64(a * -4.0), Float64(fma(x, Float64(9.0 * y), b) / z)) / c);
elseif (t_1 <= 4e+298)
tmp = t_1;
else
tmp = t_2;
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[(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]}, Block[{t$95$2 = N[(N[(N[(b / c), $MachinePrecision] / z), $MachinePrecision] + N[(N[(N[(x / z), $MachinePrecision] * N[(N[(9.0 * y), $MachinePrecision] / c), $MachinePrecision]), $MachinePrecision] + N[(N[(N[(t * a), $MachinePrecision] / c), $MachinePrecision] * -4.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]}, If[LessEqual[t$95$1, (-Infinity)], t$95$2, If[LessEqual[t$95$1, -2e-234], t$95$1, If[LessEqual[t$95$1, 5e-67], N[(N[(t * N[(a * -4.0), $MachinePrecision] + N[(N[(x * N[(9.0 * y), $MachinePrecision] + b), $MachinePrecision] / z), $MachinePrecision]), $MachinePrecision] / c), $MachinePrecision], If[LessEqual[t$95$1, 4e+298], t$95$1, t$95$2]]]]]]
\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{\left(\left(x \cdot 9\right) \cdot y - \left(\left(z \cdot 4\right) \cdot t\right) \cdot a\right) + b}{z \cdot c}\\
t_2 := \frac{\frac{b}{c}}{z} + \left(\frac{x}{z} \cdot \frac{9 \cdot y}{c} + \frac{t \cdot a}{c} \cdot -4\right)\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t_1 \leq -2 \cdot 10^{-234}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq 5 \cdot 10^{-67}:\\
\;\;\;\;\frac{\mathsf{fma}\left(t, a \cdot -4, \frac{\mathsf{fma}\left(x, 9 \cdot y, b\right)}{z}\right)}{c}\\
\mathbf{elif}\;t_1 \leq 4 \cdot 10^{+298}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
Alternatives Alternative 1 Error 4.8 Cost 11212
\[\begin{array}{l}
t_1 := \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}\\
t_2 := \frac{\frac{b}{c}}{z} + \left(\frac{x}{z} \cdot \frac{9 \cdot y}{c} + \frac{t \cdot a}{c} \cdot -4\right)\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t_1 \leq -2 \cdot 10^{-234}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq 5 \cdot 10^{-67}:\\
\;\;\;\;\frac{\frac{\mathsf{fma}\left(x, 9 \cdot y, b\right)}{z} + a \cdot \left(t \cdot -4\right)}{c}\\
\mathbf{elif}\;t_1 \leq 4 \cdot 10^{+298}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 2 Error 4.7 Cost 6608
\[\begin{array}{l}
t_1 := \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}\\
t_2 := \frac{\frac{b}{c}}{z} + \left(\frac{x}{z} \cdot \frac{9 \cdot y}{c} + \frac{t \cdot a}{c} \cdot -4\right)\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;t_2\\
\mathbf{elif}\;t_1 \leq -5 \cdot 10^{-320}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq 0:\\
\;\;\;\;\frac{1}{z} \cdot \frac{b + \left(x \cdot \left(9 \cdot y\right) + \left(t \cdot a\right) \cdot \left(z \cdot -4\right)\right)}{c}\\
\mathbf{elif}\;t_1 \leq 4 \cdot 10^{+298}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 3 Error 8.3 Cost 6352
\[\begin{array}{l}
t_1 := \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}\\
t_2 := a \cdot \left(t \cdot -4\right)\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;\frac{t_2 + \frac{x}{z} \cdot \left(9 \cdot y\right)}{c}\\
\mathbf{elif}\;t_1 \leq -2 \cdot 10^{-234}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq 0:\\
\;\;\;\;\frac{\frac{b}{z} + \left(t \cdot a\right) \cdot -4}{c}\\
\mathbf{elif}\;t_1 \leq 4 \cdot 10^{+260}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;\frac{t_2 + 9 \cdot \left(x \cdot \frac{y}{z}\right)}{c}\\
\end{array}
\]
Alternative 4 Error 7.2 Cost 6352
\[\begin{array}{l}
t_1 := \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}\\
t_2 := a \cdot \left(t \cdot -4\right)\\
\mathbf{if}\;t_1 \leq -\infty:\\
\;\;\;\;\frac{t_2 + \frac{x}{z} \cdot \left(9 \cdot y\right)}{c}\\
\mathbf{elif}\;t_1 \leq -5 \cdot 10^{-320}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;t_1 \leq 0:\\
\;\;\;\;\frac{1}{z} \cdot \frac{b + \left(x \cdot \left(9 \cdot y\right) + \left(t \cdot a\right) \cdot \left(z \cdot -4\right)\right)}{c}\\
\mathbf{elif}\;t_1 \leq 4 \cdot 10^{+260}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;\frac{t_2 + 9 \cdot \left(x \cdot \frac{y}{z}\right)}{c}\\
\end{array}
\]
Alternative 5 Error 17.0 Cost 3416
\[\begin{array}{l}
t_1 := a \cdot \left(t \cdot -4\right)\\
t_2 := \left(x \cdot 9\right) \cdot y\\
t_3 := \frac{\frac{b}{z} + \left(t \cdot a\right) \cdot -4}{c}\\
t_4 := \frac{b + \left(x \cdot \left(9 \cdot y\right) + \left(t \cdot a\right) \cdot \left(z \cdot -4\right)\right)}{z \cdot c}\\
\mathbf{if}\;t_2 \leq -1 \cdot 10^{+149}:\\
\;\;\;\;\frac{t_1 + 9 \cdot \left(x \cdot \frac{y}{z}\right)}{c}\\
\mathbf{elif}\;t_2 \leq -1 \cdot 10^{+34}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;t_2 \leq -2 \cdot 10^{-48}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t_2 \leq -4 \cdot 10^{-283}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;t_2 \leq 10^{+33}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;t_2 \leq 10^{+236}:\\
\;\;\;\;\frac{t_1 + t_2 \cdot \frac{1}{z}}{c}\\
\mathbf{else}:\\
\;\;\;\;9 \cdot \left(\frac{x}{z} \cdot \frac{y}{c}\right) + \frac{b}{z \cdot c}\\
\end{array}
\]
Alternative 6 Error 22.7 Cost 2280
\[\begin{array}{l}
t_1 := \frac{\frac{b + 9 \cdot \left(x \cdot y\right)}{z}}{c}\\
t_2 := \frac{b + -4 \cdot \left(a \cdot \left(z \cdot t\right)\right)}{z \cdot c}\\
t_3 := 9 \cdot \left(\frac{x}{z} \cdot \frac{y}{c}\right) + \frac{b}{z \cdot c}\\
t_4 := \frac{\frac{b}{z} + \left(t \cdot a\right) \cdot -4}{c}\\
\mathbf{if}\;z \leq -3.5 \cdot 10^{+46}:\\
\;\;\;\;t_4\\
\mathbf{elif}\;z \leq -2.25 \cdot 10^{-7}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq -9.6 \cdot 10^{-113}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;z \leq -1.45 \cdot 10^{-146}:\\
\;\;\;\;9 \cdot \frac{y}{\frac{z \cdot c}{x}}\\
\mathbf{elif}\;z \leq -3 \cdot 10^{-192}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 2.25 \cdot 10^{-156}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;z \leq 2.15 \cdot 10^{-52}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq 1.7 \cdot 10^{-35}:\\
\;\;\;\;\frac{t \cdot a}{c} \cdot -4\\
\mathbf{elif}\;z \leq 2.8 \cdot 10^{-5}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 1.65 \cdot 10^{+57}:\\
\;\;\;\;t_3\\
\mathbf{else}:\\
\;\;\;\;t_4\\
\end{array}
\]
Alternative 7 Error 22.5 Cost 2149
\[\begin{array}{l}
t_1 := \frac{b + -4 \cdot \left(a \cdot \left(z \cdot t\right)\right)}{z \cdot c}\\
t_2 := \frac{a \cdot \left(t \cdot -4\right) + 9 \cdot \left(x \cdot \frac{y}{z}\right)}{c}\\
t_3 := 9 \cdot \left(\frac{x}{z} \cdot \frac{y}{c}\right) + \frac{b}{z \cdot c}\\
\mathbf{if}\;z \leq -1.4 \cdot 10^{+59}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;z \leq -3.8 \cdot 10^{-12}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq -1.16 \cdot 10^{-55}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq -7.8 \cdot 10^{-98}:\\
\;\;\;\;\frac{\frac{b}{z} + \left(t \cdot a\right) \cdot -4}{c}\\
\mathbf{elif}\;z \leq -4.7 \cdot 10^{-230}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;z \leq 5 \cdot 10^{-154}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;z \leq 2.95 \cdot 10^{-74} \lor \neg \left(z \leq 3.6 \cdot 10^{-32}\right) \land z \leq 1.15 \cdot 10^{+64}:\\
\;\;\;\;t_3\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 8 Error 37.3 Cost 1896
\[\begin{array}{l}
t_1 := \frac{t \cdot a}{c} \cdot -4\\
t_2 := 9 \cdot \left(\frac{y}{z} \cdot \frac{x}{c}\right)\\
t_3 := \frac{b}{z \cdot c}\\
\mathbf{if}\;y \leq -3.3 \cdot 10^{-100}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;y \leq -1.02 \cdot 10^{-161}:\\
\;\;\;\;-4 \cdot \frac{t}{\frac{c}{a}}\\
\mathbf{elif}\;y \leq -2 \cdot 10^{-183}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;y \leq -8 \cdot 10^{-250}:\\
\;\;\;\;\frac{\frac{b}{z}}{c}\\
\mathbf{elif}\;y \leq 4 \cdot 10^{-125}:\\
\;\;\;\;\frac{-b}{\frac{c}{\frac{-1}{z}}}\\
\mathbf{elif}\;y \leq 3 \cdot 10^{-91}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 4.7 \cdot 10^{-31}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;y \leq 9 \cdot 10^{+80}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 1.9 \cdot 10^{+110}:\\
\;\;\;\;9 \cdot \frac{y}{\frac{z \cdot c}{x}}\\
\mathbf{elif}\;y \leq 7 \cdot 10^{+157}:\\
\;\;\;\;a \cdot \left(t \cdot \frac{-4}{c}\right)\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 9 Error 36.5 Cost 1896
\[\begin{array}{l}
t_1 := \frac{t \cdot a}{c} \cdot -4\\
t_2 := \frac{b}{z \cdot c}\\
\mathbf{if}\;y \leq -1.02 \cdot 10^{-100}:\\
\;\;\;\;9 \cdot \left(\frac{y}{z} \cdot \frac{x}{c}\right)\\
\mathbf{elif}\;y \leq -2.4 \cdot 10^{-154}:\\
\;\;\;\;-4 \cdot \frac{t}{\frac{c}{a}}\\
\mathbf{elif}\;y \leq -5.8 \cdot 10^{-185}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;y \leq -2.3 \cdot 10^{-250}:\\
\;\;\;\;\frac{\frac{b}{z}}{c}\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{-125}:\\
\;\;\;\;\frac{-b}{\frac{c}{\frac{-1}{z}}}\\
\mathbf{elif}\;y \leq 1.25 \cdot 10^{-91}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 1.6 \cdot 10^{-34}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;y \leq 1.15 \cdot 10^{+82}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 6.2 \cdot 10^{+109}:\\
\;\;\;\;9 \cdot \frac{y}{\frac{z \cdot c}{x}}\\
\mathbf{elif}\;y \leq 5.2 \cdot 10^{+158}:\\
\;\;\;\;a \cdot \left(t \cdot \frac{-4}{c}\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \frac{\frac{\frac{x}{z}}{0.1111111111111111}}{c}\\
\end{array}
\]
Alternative 10 Error 36.5 Cost 1896
\[\begin{array}{l}
t_1 := \frac{t \cdot a}{c} \cdot -4\\
t_2 := \frac{b}{z \cdot c}\\
\mathbf{if}\;y \leq -3.3 \cdot 10^{-100}:\\
\;\;\;\;9 \cdot \left(\frac{y}{z} \cdot \frac{x}{c}\right)\\
\mathbf{elif}\;y \leq -3.1 \cdot 10^{-159}:\\
\;\;\;\;-4 \cdot \frac{t}{\frac{c}{a}}\\
\mathbf{elif}\;y \leq -6.5 \cdot 10^{-186}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;y \leq -2.25 \cdot 10^{-250}:\\
\;\;\;\;\frac{\frac{b}{z}}{c}\\
\mathbf{elif}\;y \leq 3.6 \cdot 10^{-125}:\\
\;\;\;\;\frac{-b}{\frac{c}{\frac{-1}{z}}}\\
\mathbf{elif}\;y \leq 3.8 \cdot 10^{-91}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 2.95 \cdot 10^{-33}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{+80}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 7.5 \cdot 10^{+110}:\\
\;\;\;\;9 \cdot \left(y \cdot \frac{\frac{x}{z}}{c}\right)\\
\mathbf{elif}\;y \leq 2 \cdot 10^{+157}:\\
\;\;\;\;a \cdot \left(t \cdot \frac{-4}{c}\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \frac{\frac{\frac{x}{z}}{0.1111111111111111}}{c}\\
\end{array}
\]
Alternative 11 Error 35.7 Cost 1500
\[\begin{array}{l}
t_1 := \frac{\frac{b}{c}}{z}\\
t_2 := a \cdot \left(t \cdot \frac{-4}{c}\right)\\
t_3 := 9 \cdot \left(\frac{y}{z} \cdot \frac{x}{c}\right)\\
\mathbf{if}\;a \leq -3.2 \cdot 10^{-120}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;a \leq 2.5 \cdot 10^{-209}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq 1.8 \cdot 10^{-36}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq 3.5 \cdot 10^{-7}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{elif}\;a \leq 2.8 \cdot 10^{+15}:\\
\;\;\;\;t_3\\
\mathbf{elif}\;a \leq 5.2 \cdot 10^{+78}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq 2.95 \cdot 10^{+110}:\\
\;\;\;\;t_3\\
\mathbf{else}:\\
\;\;\;\;t_2\\
\end{array}
\]
Alternative 12 Error 24.3 Cost 1364
\[\begin{array}{l}
t_1 := \frac{\frac{b}{z} + \left(t \cdot a\right) \cdot -4}{c}\\
\mathbf{if}\;a \leq -7 \cdot 10^{-186}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq 1.75 \cdot 10^{+31}:\\
\;\;\;\;\frac{\frac{b + 9 \cdot \left(x \cdot y\right)}{z}}{c}\\
\mathbf{elif}\;a \leq 1.35 \cdot 10^{+87}:\\
\;\;\;\;\frac{b + -4 \cdot \left(a \cdot \left(z \cdot t\right)\right)}{z \cdot c}\\
\mathbf{elif}\;a \leq 5.5 \cdot 10^{+110}:\\
\;\;\;\;\frac{y}{c} \cdot \frac{x \cdot 9}{z}\\
\mathbf{elif}\;a \leq 7 \cdot 10^{+197}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(t \cdot \frac{-4}{c}\right)\\
\end{array}
\]
Alternative 13 Error 23.8 Cost 1104
\[\begin{array}{l}
\mathbf{if}\;y \leq -7.6 \cdot 10^{-78}:\\
\;\;\;\;9 \cdot \left(\frac{y}{z} \cdot \frac{x}{c}\right)\\
\mathbf{elif}\;y \leq 1.85 \cdot 10^{+86}:\\
\;\;\;\;\frac{\frac{b}{z} + \left(t \cdot a\right) \cdot -4}{c}\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{+123}:\\
\;\;\;\;9 \cdot \left(y \cdot \frac{\frac{x}{z}}{c}\right)\\
\mathbf{elif}\;y \leq 1.35 \cdot 10^{+157}:\\
\;\;\;\;a \cdot \left(t \cdot \frac{-4}{c}\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \frac{\frac{\frac{x}{z}}{0.1111111111111111}}{c}\\
\end{array}
\]
Alternative 14 Error 22.5 Cost 1100
\[\begin{array}{l}
t_1 := \frac{\frac{b}{z} + \left(t \cdot a\right) \cdot -4}{c}\\
\mathbf{if}\;a \leq -1.9 \cdot 10^{-183}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;a \leq 6.2 \cdot 10^{-29}:\\
\;\;\;\;\frac{\frac{b + 9 \cdot \left(x \cdot y\right)}{z}}{c}\\
\mathbf{elif}\;a \leq 6.1 \cdot 10^{+198}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(t \cdot \frac{-4}{c}\right)\\
\end{array}
\]
Alternative 15 Error 34.6 Cost 776
\[\begin{array}{l}
\mathbf{if}\;z \leq -4.5 \cdot 10^{+59}:\\
\;\;\;\;\frac{t \cdot a}{c} \cdot -4\\
\mathbf{elif}\;z \leq 3 \cdot 10^{+63}:\\
\;\;\;\;\frac{-b}{\frac{c}{\frac{-1}{z}}}\\
\mathbf{else}:\\
\;\;\;\;-4 \cdot \frac{t}{\frac{c}{a}}\\
\end{array}
\]
Alternative 16 Error 34.5 Cost 713
\[\begin{array}{l}
\mathbf{if}\;z \leq -9.8 \cdot 10^{+58} \lor \neg \left(z \leq 3.3 \cdot 10^{+63}\right):\\
\;\;\;\;-4 \cdot \frac{t}{\frac{c}{a}}\\
\mathbf{else}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\end{array}
\]
Alternative 17 Error 34.6 Cost 712
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.35 \cdot 10^{+59}:\\
\;\;\;\;\frac{t \cdot a}{c} \cdot -4\\
\mathbf{elif}\;z \leq 1.8 \cdot 10^{+65}:\\
\;\;\;\;\frac{b}{z \cdot c}\\
\mathbf{else}:\\
\;\;\;\;-4 \cdot \frac{t}{\frac{c}{a}}\\
\end{array}
\]
Alternative 18 Error 43.2 Cost 320
\[\frac{b}{z \cdot c}
\]
Alternative 19 Error 43.2 Cost 320
\[\frac{\frac{b}{c}}{z}
\]