| Alternative 1 |
|---|
| Error | 15.53% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x + 1\right)\\
t_1 := x \cdot \left(y + -1\right)\\
\mathbf{if}\;y \leq -2 \cdot 10^{-12}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 6.2 \cdot 10^{-75}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 4.4 \cdot 10^{-11}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.3:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 15.5% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x + 1\right)\\
\mathbf{if}\;y \leq -8.8 \cdot 10^{-13}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 5.6 \cdot 10^{-74}:\\
\;\;\;\;x \cdot y - x\\
\mathbf{elif}\;y \leq 2.16 \cdot 10^{-10}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;x \cdot \left(y + -1\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 29.84% |
|---|
| Cost | 656 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.3 \cdot 10^{+138}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq -1.8 \cdot 10^{+122}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq -7.6 \cdot 10^{-13}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.5 \cdot 10^{-73}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 15.48% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.85 \cdot 10^{-11} \lor \neg \left(y \leq 2.8 \cdot 10^{-74}\right):\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[y \cdot \left(x + 1\right) - x
\]
| Alternative 6 |
|---|
| Error | 29.39% |
|---|
| Cost | 392 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7.6 \cdot 10^{-13}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.1 \cdot 10^{-73}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]