| Alternative 1 |
|---|
| Error | 17.9 |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 4.8 \cdot 10^{-105}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 3.6 \cdot 10^{-84}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 6.2 \cdot 10^{-42}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.06 \cdot 10^{-31}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.8 \cdot 10^{-10}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 7.6 \cdot 10^{+16}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.95 \cdot 10^{+90}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 18.3 |
|---|
| Cost | 724 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 5.6 \cdot 10^{-106}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2.9 \cdot 10^{-82}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 3.6 \cdot 10^{-41}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.35 \cdot 10^{-29}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.8 \cdot 10^{-10}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 9.1 |
|---|
| Cost | 589 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.75 \lor \neg \left(y \leq 1.42 \cdot 10^{+22}\right) \land y \leq 2.1 \cdot 10^{+90}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -7 \cdot 10^{-14}:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;y \leq 5.1 \cdot 10^{-5}:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.8 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -960000:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq 3150:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + \left(x + y \cdot x\right)
\]