| Alternative 1 |
|---|
| Accuracy | 62.7% |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -1.05 \cdot 10^{+196}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.15 \cdot 10^{+145}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -1.05 \cdot 10^{+19}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -3.1 \cdot 10^{-65}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.6 \cdot 10^{-15}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.1 \cdot 10^{+105}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.6 \cdot 10^{-92} \lor \neg \left(x \leq 5.6 \cdot 10^{-18}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(1 - x\right) + x \cdot y
\]
| Alternative 5 |
|---|
| Accuracy | 63.1% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.4 \cdot 10^{-65}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 6.2 \cdot 10^{-16}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]