| Alternative 1 |
|---|
| Error | 29.8 |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;y \leq -1.32 \cdot 10^{+173}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq -1.35 \cdot 10^{+138}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -3.35 \cdot 10^{-28}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq -3.5 \cdot 10^{-222}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -6.6 \cdot 10^{-234}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.75 \cdot 10^{-239}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 4.2 \cdot 10^{-206}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 75000:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 18.8 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.82 \cdot 10^{+173}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq -1.8 \cdot 10^{+137}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -2.6 \cdot 10^{+23}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 420000:\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.6 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.1 \cdot 10^{-69} \lor \neg \left(x \leq 3.7 \cdot 10^{-30}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 0.0024\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 24.2 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.75 \cdot 10^{-69}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 4 \cdot 10^{-31}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]