| Alternative 1 |
|---|
| Error | 23.8 |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -6.2 \cdot 10^{-20}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -2.05 \cdot 10^{-46}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -3.7 \cdot 10^{-64}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 8.2 \cdot 10^{-53}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 5.4 \cdot 10^{+108}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-x\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.7 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -5.4 \cdot 10^{-23}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -1.9 \cdot 10^{-46}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -3.7 \cdot 10^{-64}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 8 \cdot 10^{-53}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 24.0 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.6 \cdot 10^{-20}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -2.3 \cdot 10^{-46}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq -3.7 \cdot 10^{-64}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 8.2 \cdot 10^{-53}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -900 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]