| Alternative 1 |
|---|
| Error | 12.5 |
|---|
| Cost | 1100 |
|---|
\[\begin{array}{l}
\mathbf{if}\;1 - z \leq -200:\\
\;\;\;\;\left(1 - z\right) \cdot x\\
\mathbf{elif}\;1 - z \leq 1.005:\\
\;\;\;\;y + x\\
\mathbf{elif}\;1 - z \leq 5 \cdot 10^{+166}:\\
\;\;\;\;\left(1 - z\right) \cdot y\\
\mathbf{else}:\\
\;\;\;\;-z \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.7 |
|---|
| Cost | 1036 |
|---|
\[\begin{array}{l}
\mathbf{if}\;1 - z \leq -200:\\
\;\;\;\;\left(1 - z\right) \cdot x\\
\mathbf{elif}\;1 - z \leq 2:\\
\;\;\;\;y + x\\
\mathbf{elif}\;1 - z \leq 5 \cdot 10^{+166}:\\
\;\;\;\;-y \cdot z\\
\mathbf{else}:\\
\;\;\;\;-z \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.6 |
|---|
| Cost | 904 |
|---|
\[\begin{array}{l}
t_0 := -\left(y + x\right) \cdot z\\
\mathbf{if}\;1 - z \leq -200:\\
\;\;\;\;t_0\\
\mathbf{elif}\;1 - z \leq 2:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 12.9 |
|---|
| Cost | 652 |
|---|
\[\begin{array}{l}
t_0 := -z \cdot x\\
\mathbf{if}\;z \leq -6 \cdot 10^{+166}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -5.1:\\
\;\;\;\;-y \cdot z\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 13.3 |
|---|
| Cost | 520 |
|---|
\[\begin{array}{l}
t_0 := -y \cdot z\\
\mathbf{if}\;z \leq -5.1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(x + y\right) \cdot \left(1 - z\right)
\]
| Alternative 7 |
|---|
| Error | 34.4 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.8 \cdot 10^{+41}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.3 \cdot 10^{-102}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]