| Alternative 1 |
|---|
| Error | 22.7 |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -2.85 \cdot 10^{-155}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq -6.8 \cdot 10^{-217}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq -6 \cdot 10^{-232}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 1.25 \cdot 10^{-249}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 8.8 \cdot 10^{-225}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 1.4 \cdot 10^{-95}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2:\\
\;\;\;\;x + x\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.2 |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7.5 \cdot 10^{-47}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 2.5 \cdot 10^{-35} \lor \neg \left(y \leq 12200\right) \land y \leq 6.5 \cdot 10^{+19}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 4.0 |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.6 \cdot 10^{-9} \lor \neg \left(x \leq 1.26 \cdot 10^{-7}\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 -2 \lor \neg \left(x \leq 2\right):\\
\;\;\;\;y \cdot y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[y \cdot y + x \cdot \left(x + 2\right)
\]
| Alternative 6 |
|---|
| Error | 24.7 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.8:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 510000:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]