| Alternative 1 |
|---|
| Error | 9.8 |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -230000000 \lor \neg \left(x \leq 4.5 \cdot 10^{-9}\right) \land \left(x \leq 2.5 \cdot 10^{+40} \lor \neg \left(x \leq 1.02 \cdot 10^{+58}\right)\right):\\
\;\;\;\;y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y + y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 38.0 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.2 \cdot 10^{-99}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 5.2 \cdot 10^{-81}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 11.2 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.5 \cdot 10^{+34}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 1.02 \cdot 10^{+58}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + \left(y + x \cdot x\right)
\]