| Alternative 1 |
|---|
| Accuracy | 61.4% |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;y \leq -1.8 \cdot 10^{+274}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -9 \cdot 10^{+234}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.7 \cdot 10^{+149}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -1.3 \cdot 10^{+73}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -8.5 \cdot 10^{+45}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{-47}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 84.8% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.15 \cdot 10^{-11} \lor \neg \left(y \leq 2.9 \cdot 10^{-47}\right):\\
\;\;\;\;y \cdot \left(z - x\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(z - x\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 61.3% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -440000000:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 8.5 \cdot 10^{-46}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z - x\right)
\]