| Alternative 1 |
|---|
| Error | 29.2 |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.5 \cdot 10^{+122}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -2.25 \cdot 10^{+110}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -3.9 \cdot 10^{+27}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -1.35 \cdot 10^{-154}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq -5.8 \cdot 10^{-195}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq 8 \cdot 10^{-174}:\\
\;\;\;\;z\\
\mathbf{elif}\;y \leq 1.36 \cdot 10^{-101}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;y \leq 5.5 \cdot 10^{+28}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.5 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.8 \cdot 10^{+86} \lor \neg \left(x \leq 8.5 \cdot 10^{+69}\right):\\
\;\;\;\;\left(0.5 + y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;z + y \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -62 \lor \neg \left(y \leq 3.1 \cdot 10^{-12}\right):\\
\;\;\;\;z + y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z + \frac{x}{2}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 15.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.7 \cdot 10^{+15}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 1.5 \cdot 10^{+42}:\\
\;\;\;\;\left(0.5 + y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 27.6 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.8 \cdot 10^{-34}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 5.5 \cdot 10^{-114}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + \left(0.5 + y\right) \cdot x
\]