| Alternative 1 |
|---|
| Error | 19.8 |
|---|
| Cost | 920 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.6 \cdot 10^{+158}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq -1.9 \cdot 10^{+135}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq -2.4 \cdot 10^{-47}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.3 \cdot 10^{-117}:\\
\;\;\;\;-x\\
\mathbf{elif}\;y \leq 1.4 \cdot 10^{-80}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.55 \cdot 10^{-39}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.2 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x + 1\right)\\
\mathbf{if}\;y \leq -1.28 \cdot 10^{-49}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 10^{-116}:\\
\;\;\;\;-x\\
\mathbf{elif}\;y \leq 1.66 \cdot 10^{-80}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 9 \cdot 10^{-37}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 19.5 |
|---|
| Cost | 656 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -5.6 \cdot 10^{-49}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{-116}:\\
\;\;\;\;-x\\
\mathbf{elif}\;y \leq 1.46 \cdot 10^{-80}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 3 \cdot 10^{-33}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y \cdot \left(x + 1\right) - x
\]