| Alternative 1 |
|---|
| Accuracy | 56.9% |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.7 \cdot 10^{+84}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq -6 \cdot 10^{+21}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -4.8 \cdot 10^{+16}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq -5.5 \cdot 10^{-99}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -1.4 \cdot 10^{-151}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 8 \cdot 10^{+37}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 73.9% |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.75 \cdot 10^{+154}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 0.0095 \lor \neg \left(z \leq 1.7 \cdot 10^{+69}\right) \land z \leq 1.15 \cdot 10^{+114}:\\
\;\;\;\;x \cdot \left(y + 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 83.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.7 \cdot 10^{+16} \lor \neg \left(x \leq 1.12 \cdot 10^{+33}\right):\\
\;\;\;\;x \cdot \left(y + 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -12500 \lor \neg \left(y \leq 0.5\right):\\
\;\;\;\;z + x \cdot y\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{2} + z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[z + \left(\frac{x}{2} + x \cdot y\right)
\]
| Alternative 6 |
|---|
| Accuracy | 58.2% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.2 \cdot 10^{+16}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;x \leq 1.55 \cdot 10^{+36}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - -0.5\right)
\]