| Alternative 1 |
|---|
| Accuracy | 63.7% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -8 \cdot 10^{-40}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 4.1 \cdot 10^{-17}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 4.2 \cdot 10^{+111}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 5.6 \cdot 10^{+168}:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 81.0% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.35 \cdot 10^{-38} \lor \neg \left(y \leq 7.3 \cdot 10^{-16}\right):\\
\;\;\;\;y \cdot \left(z - x\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 81.1% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.3 \cdot 10^{-38} \lor \neg \left(y \leq 920\right):\\
\;\;\;\;y \cdot \left(z - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.6% |
|---|
| 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 5 |
|---|
| Accuracy | 63.6% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -6.2 \cdot 10^{-39}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 5.4 \cdot 10^{-16}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z - x\right)
\]