| Alternative 1 |
|---|
| Error | 10.3 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y + x \cdot x\\
\mathbf{if}\;x \leq -2738921950194309600:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -3.776871919647458 \cdot 10^{-30}:\\
\;\;\;\;y + y\\
\mathbf{elif}\;x \leq -5.947281636010873 \cdot 10^{-64}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7.12472732075115 \cdot 10^{-20}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 11.2 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2738921950194309600:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq -3.776871919647458 \cdot 10^{-30}:\\
\;\;\;\;y + y\\
\mathbf{elif}\;x \leq -1.3535348695044549 \cdot 10^{-52}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 7.12472732075115 \cdot 10^{-20}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + \left(y + x \cdot x\right)
\]