| Alternative 1 |
|---|
| Accuracy | 63.2% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;y \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.3 \cdot 10^{-15}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{+66}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 2.45 \cdot 10^{+231}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.6% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.9 \cdot 10^{-52} \lor \neg \left(y \leq 6 \cdot 10^{-16}\right):\\
\;\;\;\;y \cdot \left(z - x\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 1.7 \cdot 10^{-15}\right):\\
\;\;\;\;y \cdot \left(z - x\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[x + \left(y \cdot z - y \cdot x\right)
\]
| Alternative 5 |
|---|
| Accuracy | 62.5% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.9 \cdot 10^{-52}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 2.1 \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)
\]