| Alternative 1 |
|---|
| Accuracy | 62.9% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.2 \cdot 10^{+195}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -1.15 \cdot 10^{+165}:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;x \leq -2.2 \cdot 10^{-8}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.6 \cdot 10^{-50}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.8 \cdot 10^{-8} \lor \neg \left(x \leq 1.4 \cdot 10^{-50}\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5800 \lor \neg \left(x \leq 3.1 \cdot 10^{-6}\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[y \cdot \left(1 - x\right) + x \cdot z
\]
| Alternative 5 |
|---|
| Accuracy | 62.6% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.2 \cdot 10^{-8}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 1.4 \cdot 10^{-53}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]