| Alternative 1 |
|---|
| Error | 22.7 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -3.6 \cdot 10^{-139}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 3.2 \cdot 10^{-266}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 1.65 \cdot 10^{-221}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 1.45 \cdot 10^{-121}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2:\\
\;\;\;\;x + x\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.1 |
|---|
| Cost | 972 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 5.8 \cdot 10^{-54}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{elif}\;y \cdot y \leq 450000000000:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \cdot y \leq 1.8 \cdot 10^{+28}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 5.4 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.1 \cdot 10^{-13} \lor \neg \left(x \leq 3.9 \cdot 10^{-51}\right):\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.3 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -950 \lor \neg \left(x \leq 2\right):\\
\;\;\;\;x \cdot x + y \cdot y\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 5.4 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.85 \cdot 10^{-13}:\\
\;\;\;\;x \cdot x + x \cdot 2\\
\mathbf{elif}\;x \leq 3.9 \cdot 10^{-51}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 704 |
|---|
\[\left(x \cdot x + x \cdot 2\right) + y \cdot y
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[y \cdot y + x \cdot \left(x + 2\right)
\]
| Alternative 8 |
|---|
| Error | 25.6 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -10600000000:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 3.9 \cdot 10^{-51}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]