| Alternative 1 |
|---|
| Error | 30.24% |
|---|
| Cost | 656 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.5 \cdot 10^{+127}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq -3.6 \cdot 10^{+39}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -1.95 \cdot 10^{-28}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 3.5 \cdot 10^{-53}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.01% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.8 \cdot 10^{-24} \lor \neg \left(y \leq 1.32 \cdot 10^{-20}\right):\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 15.26% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4 \cdot 10^{-23} \lor \neg \left(x \leq 5.2 \cdot 10^{-53}\right):\\
\;\;\;\;x \cdot \left(y + -1\right)\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 15.31% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.6 \cdot 10^{-27}:\\
\;\;\;\;x \cdot \left(y + -1\right)\\
\mathbf{elif}\;x \leq 7.5 \cdot 10^{-55}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot y - x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[y \cdot \left(x + 1\right) - x
\]
| Alternative 6 |
|---|
| Error | 29.18% |
|---|
| Cost | 392 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8 \cdot 10^{-29}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 1.9 \cdot 10^{-54}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]