| Alternative 1 |
|---|
| Accuracy | 60.9% |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -34000000:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -2.7 \cdot 10^{-17}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -5.1 \cdot 10^{-86}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq -4.6 \cdot 10^{-137}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 2.4 \cdot 10^{-66}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.22 \cdot 10^{+108}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 3 \cdot 10^{+172}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 78.7% |
|---|
| Cost | 1113 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x + z\right)\\
t_1 := x \cdot \left(y + 1\right)\\
\mathbf{if}\;y \leq -3.2 \cdot 10^{-18}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -6.4 \cdot 10^{-86}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq -8 \cdot 10^{-137}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 3.6 \cdot 10^{-66}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 8.8 \cdot 10^{-14} \lor \neg \left(y \leq 400\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 78.8% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x + z\right)\\
\mathbf{if}\;y \leq -1.45 \cdot 10^{-16}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -6.4 \cdot 10^{-86}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq -6.4 \cdot 10^{-137}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 4.6 \cdot 10^{-66}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -8.5 \lor \neg \left(y \leq 1\right):\\
\;\;\;\;y \cdot \left(x + z\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 62.6% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.4 \cdot 10^{-5}:\\
\;\;\;\;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)
\]