| Alternative 1 |
|---|
| Error | 19.8 |
|---|
| Cost | 1380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7.8 \cdot 10^{+89}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq -2.7 \cdot 10^{+54}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq -1.3 \cdot 10^{-9}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 3.6 \cdot 10^{-70}:\\
\;\;\;\;-x\\
\mathbf{elif}\;y \leq 8 \cdot 10^{-16}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 0.112:\\
\;\;\;\;-x\\
\mathbf{elif}\;y \leq 1.65 \cdot 10^{+75}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.2 \cdot 10^{+158}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.4 \cdot 10^{+180}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.1 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.06 \cdot 10^{+89}:\\
\;\;\;\;y - x\\
\mathbf{elif}\;y \leq -2.8 \cdot 10^{+63}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1100:\\
\;\;\;\;y - x\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{+76}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.15 \cdot 10^{+158}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.4 \cdot 10^{+180}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(1 + x\right) \cdot y\\
\mathbf{if}\;y \leq -50:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 0.112:\\
\;\;\;\;y - x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - 1\right) \cdot x\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y - x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(x + 1\right) \cdot y - x
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(y \cdot x + y\right) - x
\]
| Alternative 7 |
|---|
| Error | 17.9 |
|---|
| Cost | 392 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.4 \cdot 10^{-25}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 1.9 \cdot 10^{-27}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]