| Alternative 1 |
|---|
| Accuracy | 58.2% |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3.3 \cdot 10^{+36}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq -7.5 \cdot 10^{-47}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;z \leq -6.5 \cdot 10^{-135}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq -2.5 \cdot 10^{-168}:\\
\;\;\;\;y \cdot \left(-z\right)\\
\mathbf{elif}\;z \leq 6.4 \cdot 10^{-31}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.3 \cdot 10^{-13} \lor \neg \left(y \leq 5.8 \cdot 10^{-15}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 1\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 62.8% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.4 \cdot 10^{-12}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{-16}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + y \cdot \left(x - z\right)
\]