| Alternative 1 |
|---|
| Accuracy | 60.5% |
|---|
| Cost | 1180 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-y\right)\\
\mathbf{if}\;y \leq -1450000000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -3.2 \cdot 10^{-15}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 4.6 \cdot 10^{-172}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{-128}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 7.5 \cdot 10^{-50}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 3500:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 8.5 \cdot 10^{+32}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 79.0% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(z - x\right)\\
t_1 := x \cdot \left(1 - y\right)\\
\mathbf{if}\;y \leq -7.6 \cdot 10^{-15}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 4.6 \cdot 10^{-172}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{-128}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 3.2 \cdot 10^{-48}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 61.2% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -5.4 \cdot 10^{-15}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 2.85 \cdot 10^{-176}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{-128}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 3.2 \cdot 10^{-48}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 74.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.3 \cdot 10^{-52} \lor \neg \left(x \leq 1.7 \cdot 10^{-92}\right):\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 98.7% |
|---|
| 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 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[y \cdot z + \left(x - y \cdot x\right)
\]
| Alternative 7 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z - x\right)
\]