| Alternative 1 |
|---|
| Error | 24.1 |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-z\right)\\
\mathbf{if}\;y \leq -8.2 \cdot 10^{+56}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -1.85 \cdot 10^{+14}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -1.9 \cdot 10^{-13}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 7.4 \cdot 10^{-31}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 3.35 \cdot 10^{+43}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.4 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -5.8 \cdot 10^{-19} \lor \neg \left(y \leq 3 \cdot 10^{-28}\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -280 \lor \neg \left(y \leq 1\right):\\
\;\;\;\;y \cdot \left(x - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(1 - y\right) + y \cdot x
\]
| Alternative 5 |
|---|
| Error | 23.6 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.42 \cdot 10^{-11}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.8 \cdot 10^{-31}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]