| Alternative 1 |
|---|
| Error | 1.7 |
|---|
| Cost | 844 |
|---|
\[\begin{array}{l}
t_0 := y \cdot y + x \cdot x\\
\mathbf{if}\;x \leq -480000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 5.6 \cdot 10^{-33}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\mathbf{elif}\;x \leq 70000000:\\
\;\;\;\;x \cdot x + x \cdot 2\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 21.9 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -1.5 \cdot 10^{-143}:\\
\;\;\;\;x + x\\
\mathbf{elif}\;x \leq 7 \cdot 10^{-99}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq 2:\\
\;\;\;\;x + x\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 5.0 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.8 \cdot 10^{+25}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 5.6 \cdot 10^{-33}:\\
\;\;\;\;y \cdot y + x \cdot 2\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 9.9 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.7 \cdot 10^{-32}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 6.8 \cdot 10^{-66}:\\
\;\;\;\;x \cdot \left(x + 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[y \cdot y + x \cdot \left(x + 2\right)
\]
| Alternative 6 |
|---|
| Error | 25.8 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.2 \cdot 10^{+23}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 5.6 \cdot 10^{-33}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]