| Alternative 1 |
|---|
| Error | 1.1 |
|---|
| Cost | 844 |
|---|
\[\begin{array}{l}
t_0 := y \cdot y + x \cdot x\\
\mathbf{if}\;x \leq -31000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2.6 \cdot 10^{-10}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{elif}\;x \leq 1.8:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 4.9 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.6 \cdot 10^{-10} \lor \neg \left(x \leq 3.3 \cdot 10^{+22}\right):\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 9.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7 \cdot 10^{-48}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 6.5 \cdot 10^{-52}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[y \cdot y + x \cdot \left(x + 2\right)
\]
| Alternative 5 |
|---|
| Error | 24.6 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -550000000:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 4.1 \cdot 10^{+14}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 21.4 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 7.2 \cdot 10^{-199}:\\
\;\;\;\;x + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]