| Alternative 1 |
|---|
| Error | 26.56% |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{-156}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 5.2 \cdot 10^{-141}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 3.8 \cdot 10^{-62}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.55 \cdot 10^{+21}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.75 \cdot 10^{+32}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 6 \cdot 10^{+104}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 6.8 \cdot 10^{+134}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.66% |
|---|
| Cost | 589 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.8 \lor \neg \left(y \leq 1.6 \cdot 10^{+104}\right) \land y \leq 2.3 \cdot 10^{+134}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.8% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6500:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq 1.5 \cdot 10^{-16}:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.8% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6500:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq 1.5 \cdot 10^{-16}:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y + y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.6% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6500:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq 1950:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.01% |
|---|
| Cost | 448 |
|---|
\[y + \left(x + y \cdot x\right)
\]
| Alternative 7 |
|---|
| Error | 27.41% |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.3 \cdot 10^{-95}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]