| Alternative 1 |
|---|
| Error | 12.8 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(y - z\right)\\
\mathbf{if}\;x \leq -2.4 \cdot 10^{-27}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -8.6 \cdot 10^{-88}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -1.15 \cdot 10^{-96}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.3 \cdot 10^{-76}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 26.4 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.55 \cdot 10^{+159}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq -5 \cdot 10^{+48}:\\
\;\;\;\;z \cdot \left(-x\right)\\
\mathbf{elif}\;z \leq -1.85 \cdot 10^{-16}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 2 \cdot 10^{-7}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.3 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.4 \cdot 10^{-16} \lor \neg \left(z \leq 0.00029\right):\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(y - z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6000 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[x \cdot y + z \cdot \left(1 - x\right)
\]
| Alternative 6 |
|---|
| Error | 24.9 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5 \cdot 10^{-16}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 1.5 \cdot 10^{-8}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]