| Alternative 1 |
|---|
| Error | 20.9 |
|---|
| Cost | 920 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.2 \cdot 10^{+118}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq -1.1 \cdot 10^{+78}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq -5.2 \cdot 10^{+59}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq -7 \cdot 10^{-10}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq -1.95 \cdot 10^{-137}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.05 \cdot 10^{-21}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 11.3 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.35 \cdot 10^{+131}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq -7.8 \cdot 10^{+70}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 4 \cdot 10^{+74}:\\
\;\;\;\;y - x\\
\mathbf{elif}\;x \leq 6.5 \cdot 10^{+172}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.8 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 0.00012\right):\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\mathbf{else}:\\
\;\;\;\;y - x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.8 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y + -1\right)\\
\mathbf{else}:\\
\;\;\;\;y - x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1:\\
\;\;\;\;x \cdot \left(y + -1\right)\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y - x\\
\mathbf{else}:\\
\;\;\;\;x \cdot y - x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y \cdot \left(x + 1\right) - x
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(y + x \cdot y\right) - x
\]
| Alternative 8 |
|---|
| Error | 20.2 |
|---|
| Cost | 392 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.95 \cdot 10^{-137}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.56 \cdot 10^{-22}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]