| Alternative 1 |
|---|
| Accuracy | 51.7% |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.8 \cdot 10^{+63}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq -5.2 \cdot 10^{+18}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;x \leq -9 \cdot 10^{-43}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq 5 \cdot 10^{-306}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 2.6 \cdot 10^{-104}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;x \leq 1.3 \cdot 10^{+37}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 2 \cdot 10^{+63}:\\
\;\;\;\;y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot 3\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 85.1% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.1 \cdot 10^{+64} \lor \neg \left(x \leq -3.3 \cdot 10^{+22}\right) \land \left(x \leq -7 \cdot 10^{-35} \lor \neg \left(x \leq 3.9 \cdot 10^{+62}\right)\right):\\
\;\;\;\;z + x \cdot 3\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot 2\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 78.0% |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.02 \cdot 10^{+68}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq -7.6 \cdot 10^{+16} \lor \neg \left(x \leq -7 \cdot 10^{-35}\right) \land x \leq 3 \cdot 10^{+132}:\\
\;\;\;\;z + y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot 3\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 84.9% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.2 \cdot 10^{-37}:\\
\;\;\;\;x + 2 \cdot \left(x + y\right)\\
\mathbf{elif}\;x \leq 6.8 \cdot 10^{+59}:\\
\;\;\;\;z + y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;z + 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.0% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -6.6 \cdot 10^{+107}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;y \leq 1.6 \cdot 10^{-21}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot 2\\
\end{array}
\]