| Alternative 1 |
|---|
| Accuracy | 52.3% |
|---|
| Cost | 1512 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.12 \cdot 10^{+101}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq -700000:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -2.5 \cdot 10^{-197}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;x \leq -1.7 \cdot 10^{-248}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -6.2 \cdot 10^{-301}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;x \leq 5.5 \cdot 10^{-257}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.75 \cdot 10^{-241}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;x \leq 190:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 9.5 \cdot 10^{+17}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;x \leq 1.35 \cdot 10^{+47}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot 3\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 85.9% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.85 \cdot 10^{+47} \lor \neg \left(z \leq 2.12 \cdot 10^{-7}\right):\\
\;\;\;\;z + x \cdot 3\\
\mathbf{else}:\\
\;\;\;\;x + 2 \cdot \left(x + y\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 85.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.8 \cdot 10^{+18} \lor \neg \left(y \leq 1.05 \cdot 10^{+82}\right):\\
\;\;\;\;z + y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot 3\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 78.2% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -9 \cdot 10^{+106}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq 1.02 \cdot 10^{+47}:\\
\;\;\;\;z + y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot 3\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 576 |
|---|
\[x + \left(z + 2 \cdot \left(x + y\right)\right)
\]
| Alternative 6 |
|---|
| Accuracy | 52.8% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.45 \cdot 10^{+88}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 1.75 \cdot 10^{-5}:\\
\;\;\;\;y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]