| Alternative 1 |
|---|
| Accuracy | 46.3% |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.1 \cdot 10^{+57}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq -1.05 \cdot 10^{-37}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -3.05 \cdot 10^{-176}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;y \leq 1.15 \cdot 10^{-74}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 2.1 \cdot 10^{-34}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{+92}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 1.02 \cdot 10^{+192}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 8.2 \cdot 10^{+249}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 72.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -7.8 \cdot 10^{+34} \lor \neg \left(z \leq 4.8 \cdot 10^{-70}\right):\\
\;\;\;\;z + x \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(y + 0.5\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 86.3% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -72000000 \lor \neg \left(y \leq 0.5\right):\\
\;\;\;\;z + x \cdot y\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{2} + z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 66.1% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.65 \cdot 10^{+101}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 1.82 \cdot 10^{-22}:\\
\;\;\;\;x \cdot \left(y + 0.5\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 50.9% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.6 \cdot 10^{+38}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 3.2 \cdot 10^{-68}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 87.2% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - -0.5\right)
\]