| Alternative 1 |
|---|
| Accuracy | 61.4% |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2 \cdot 10^{+274}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -9 \cdot 10^{+234}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -1.7 \cdot 10^{+149}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -1.3 \cdot 10^{+73}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -8.5 \cdot 10^{+45}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -1:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{-47}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 84.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.1 \cdot 10^{-10} \lor \neg \left(y \leq 5.8 \cdot 10^{-54}\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 99.0% |
|---|
| 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}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 60.3% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 6.1 \cdot 10^{+29}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(x + z\right)
\]