| Alternative 1 |
|---|
| Accuracy | 62.8% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -2.5 \cdot 10^{+213}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -8.5 \cdot 10^{-14}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 4.8 \cdot 10^{-6}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 6.2 \cdot 10^{+155}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 81.1% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.1 \cdot 10^{-13} \lor \neg \left(x \leq 1.9 \cdot 10^{-6}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -58000000000000 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 62.7% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.9 \cdot 10^{-13}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.85 \cdot 10^{-6}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]