| Alternative 1 |
|---|
| Error | 30.2% |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4 \cdot 10^{+91}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq -1.9 \cdot 10^{+64}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -4.8 \cdot 10^{-38}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 2.8 \cdot 10^{+75}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.58% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.02 \cdot 10^{-60} \lor \neg \left(y \leq 5.4 \cdot 10^{-17}\right):\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.24% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.9 \cdot 10^{-38} \lor \neg \left(x \leq 3.1 \cdot 10^{-99}\right):\\
\;\;\;\;x \cdot \left(y + -1\right)\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 15.79% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.5 \cdot 10^{-5} \lor \neg \left(x \leq 1.2 \cdot 10^{-97}\right):\\
\;\;\;\;x \cdot \left(y + -1\right)\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.01% |
|---|
| Cost | 448 |
|---|
\[y \cdot \left(x + 1\right) - x
\]
| Alternative 6 |
|---|
| Error | 0.01% |
|---|
| Cost | 448 |
|---|
\[\left(y + x \cdot y\right) - x
\]
| Alternative 7 |
|---|
| Error | 29.98% |
|---|
| Cost | 392 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.5 \cdot 10^{-33}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 4.8 \cdot 10^{-98}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]