| Alternative 1 |
|---|
| Error | 11.9 |
|---|
| Cost | 1100 |
|---|
\[\begin{array}{l}
t_0 := \left(2 + x\right) \cdot x\\
\mathbf{if}\;y \cdot y \leq 5.1 \cdot 10^{+14}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \cdot y \leq 4.4 \cdot 10^{+79}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \cdot y \leq 4.4 \cdot 10^{+97}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 4.9 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := \left(2 + x\right) \cdot x\\
\mathbf{if}\;x \leq -1.9 \cdot 10^{-6}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 5.5 \cdot 10^{+36}:\\
\;\;\;\;2 \cdot x + y \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[\left(2 + x\right) \cdot x + y \cdot y
\]
| Alternative 4 |
|---|
| Error | 21.5 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.8 \cdot 10^{-61}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{-109}:\\
\;\;\;\;2 \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]