| Alternative 1 |
|---|
| Accuracy | 62.1% |
|---|
| Cost | 1117 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.15 \cdot 10^{+46}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -3.8 \cdot 10^{-28}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 1.95 \cdot 10^{-72}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 900000000:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 5.4 \cdot 10^{+93} \lor \neg \left(y \leq 3 \cdot 10^{+184}\right) \land y \leq 4 \cdot 10^{+238}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.1 \cdot 10^{-16} \lor \neg \left(y \leq 1.95 \cdot 10^{-72}\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.6% |
|---|
| 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 | 100.0% |
|---|
| Cost | 576 |
|---|
\[y \cdot z + x \cdot \left(y + 1\right)
\]
| Alternative 5 |
|---|
| Accuracy | 61.4% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(x + z\right)
\]