| Alternative 1 |
|---|
| Accuracy | 61.5% |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.5 \cdot 10^{+237}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq -1.05 \cdot 10^{+137}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -5 \cdot 10^{+38}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq -1.62 \cdot 10^{-21}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 3500000:\\
\;\;\;\;z \cdot 5\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{+166}:\\
\;\;\;\;z \cdot x\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 98.9% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5 \lor \neg \left(x \leq 0.62\right):\\
\;\;\;\;x \cdot \left(z + y\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot 5 + x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 85.2% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.4 \cdot 10^{-21} \lor \neg \left(x \leq 0.49\right):\\
\;\;\;\;x \cdot \left(z + y\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(5 + x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 75.3% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.8 \cdot 10^{+117}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 9.8 \cdot 10^{+62}:\\
\;\;\;\;z \cdot \left(5 + x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 576 |
|---|
\[z \cdot 5 + x \cdot \left(z + y\right)
\]
| Alternative 6 |
|---|
| Accuracy | 61.8% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.2 \cdot 10^{-24}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 5.8 \cdot 10^{-64}:\\
\;\;\;\;z \cdot 5\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]