| Alternative 1 |
|---|
| Error | 38.23% |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.2 \cdot 10^{+180}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -7.5 \cdot 10^{+149}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -2.2 \cdot 10^{+71}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -2.1 \cdot 10^{+29}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -2 \cdot 10^{-84}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 22.65% |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.2 \cdot 10^{+180}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -6.6 \cdot 10^{+149}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -2.8 \cdot 10^{+71}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -3.6 \cdot 10^{+29}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 18.5:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.29% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1020 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 15.37% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -6 \cdot 10^{-13}:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 15.37% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -6 \cdot 10^{-13}:\\
\;\;\;\;x + y \cdot x\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 15.37% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -6 \cdot 10^{-13}:\\
\;\;\;\;x + y \cdot x\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y + y \cdot x\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.01% |
|---|
| Cost | 448 |
|---|
\[y + \left(x + y \cdot x\right)
\]
| Alternative 8 |
|---|
| Error | 42.56% |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 2.65 \cdot 10^{-31}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]