| Alternative 1 |
|---|
| Accuracy | 53.2% |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7 \cdot 10^{+20}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -8 \cdot 10^{-17}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -1.22 \cdot 10^{-90}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq -8.5 \cdot 10^{-185}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -4.6 \cdot 10^{-255}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq 1.25 \cdot 10^{-151}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 0.085:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq 1.12 \cdot 10^{+126}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 83.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.4 \cdot 10^{+28} \lor \neg \left(x \leq 2.2 \cdot 10^{+24}\right):\\
\;\;\;\;\left(0.5 + y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.8% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -12.5 \lor \neg \left(y \leq 0.5\right):\\
\;\;\;\;z + y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z + \frac{x}{2}\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 75.6% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.8 \cdot 10^{+131}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 3.8 \cdot 10^{+21}:\\
\;\;\;\;\left(0.5 + y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 58.5% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.8 \cdot 10^{+28}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;x \leq 10^{+31}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - -0.5\right)
\]