| Alternative 1 |
|---|
| Error | 14.5 |
|---|
| Cost | 589 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.5 \cdot 10^{+72} \lor \neg \left(x \leq -1.9 \cdot 10^{+45}\right) \land x \leq 3100000000:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.1 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -170000000:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.15 \cdot 10^{-6}:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y + y \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 27.8 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.18 \cdot 10^{-7}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(y + 1\right)
\]