| Alternative 1 |
|---|
| Error | 9.9 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := y + x \cdot x\\
\mathbf{if}\;x \leq -54.801187030765554:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.4704233692169524 \cdot 10^{-42}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 37.7 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.4495616745873813 \cdot 10^{-55}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 3.549486702895513 \cdot 10^{-100}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 10.9 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -236919.7790335652:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 1.4704233692169524 \cdot 10^{-42}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + \left(y + x \cdot x\right)
\]