| Alternative 1 |
|---|
| Error | 9.8 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(x + 1\right)\\
\mathbf{if}\;y \leq -3.2 \cdot 10^{-23}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 9 \cdot 10^{-64}:\\
\;\;\;\;-x\\
\mathbf{elif}\;y \leq 1.9 \cdot 10^{-25}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.1 \cdot 10^{-9}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 9.7 |
|---|
| 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 -3.85 \cdot 10^{-25}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 8.2 \cdot 10^{-66}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;y \leq 5 \cdot 10^{-25}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2800000:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 18.8 |
|---|
| Cost | 656 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.1 \cdot 10^{-23}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 6.6 \cdot 10^{-62}:\\
\;\;\;\;-x\\
\mathbf{elif}\;y \leq 4.2 \cdot 10^{-24}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2 \cdot 10^{-8}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y \cdot \left(x + 1\right) - x
\]