| Alternative 1 |
|---|
| Accuracy | 54.7% |
|---|
| Cost | 1644 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -380:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -1.8 \cdot 10^{-165}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq -4.9 \cdot 10^{-214}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -6 \cdot 10^{-285}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq 3.7 \cdot 10^{-230}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 5.8 \cdot 10^{-186}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq 4.5 \cdot 10^{-172}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 1.22 \cdot 10^{-114}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{-95}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 1.6 \cdot 10^{-6}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq 2.1 \cdot 10^{+33}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 76.1% |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.18 \cdot 10^{+89}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 1.38 \cdot 10^{+20} \lor \neg \left(z \leq 4.1 \cdot 10^{+58}\right) \land z \leq 7.2 \cdot 10^{+89}:\\
\;\;\;\;\left(0.5 + y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 83.3% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4200000000000 \lor \neg \left(x \leq 2.5 \cdot 10^{+54}\right):\\
\;\;\;\;\left(0.5 + y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -380 \lor \neg \left(y \leq 0.5\right):\\
\;\;\;\;z + y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z + \frac{x}{2}\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 57.4% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4000000000000:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;x \leq 2.2 \cdot 10^{+54}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + \left(0.5 + y\right) \cdot x
\]