| Alternative 1 |
|---|
| Accuracy | 52.1% |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.8 \cdot 10^{+36}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq -7.4 \cdot 10^{-61}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;x \leq -3.5 \cdot 10^{-176}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.22 \cdot 10^{+27}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;x \leq 2.78 \cdot 10^{+70}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq 8 \cdot 10^{+85}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;x \leq 2.2 \cdot 10^{+149}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot 3\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 85.3% |
|---|
| Cost | 977 |
|---|
\[\begin{array}{l}
t_0 := x \cdot 3 + y \cdot 2\\
\mathbf{if}\;y \leq -5 \cdot 10^{-5}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.4 \cdot 10^{-9}:\\
\;\;\;\;z + x \cdot 3\\
\mathbf{elif}\;y \leq 2.25 \cdot 10^{+169} \lor \neg \left(y \leq 5 \cdot 10^{+225}\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot 2\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 84.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -0.000108 \lor \neg \left(y \leq 8.6 \cdot 10^{-24}\right):\\
\;\;\;\;z + y \cdot 2\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot 3\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 80.3% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.4 \cdot 10^{+155}:\\
\;\;\;\;x \cdot 3\\
\mathbf{elif}\;x \leq 2.3 \cdot 10^{+163}:\\
\;\;\;\;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.4% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.6 \cdot 10^{-6}:\\
\;\;\;\;y \cdot 2\\
\mathbf{elif}\;y \leq 5.5 \cdot 10^{+18}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot 2\\
\end{array}
\]