| Alternative 1 |
|---|
| Accuracy | 61.1% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-y\right)\\
\mathbf{if}\;y \leq -3 \cdot 10^{+18}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -2.05 \cdot 10^{-14}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 4 \cdot 10^{-60}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 5.5 \cdot 10^{+20}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 84.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.8 \cdot 10^{-60} \lor \neg \left(y \leq 1.45 \cdot 10^{-59}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.8% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -15500000000000 \lor \neg \left(y \leq 1.45 \cdot 10^{-8}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 61.8% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.7 \cdot 10^{-12}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.52 \cdot 10^{-59}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + y \cdot \left(x - z\right)
\]