| Alternative 1 |
|---|
| Error | 10.1 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot x + y\\
\mathbf{if}\;x \leq -30:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 280000000:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 38.0 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.45 \cdot 10^{-95}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 1.32 \cdot 10^{-114}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 11.0 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.6:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 7500000000:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(x \cdot x + y\right) + y
\]