| Alternative 1 |
|---|
| Error | 15.5 |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;y \leq 2.8 \cdot 10^{-143}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 10^{-79}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 9.8 \cdot 10^{-40}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 8.0 |
|---|
| Cost | 588 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3 \cdot 10^{+135}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -1.7 \cdot 10^{+127}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 3.4 \cdot 10^{+22}:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -24:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq 1.9 \cdot 10^{-81}:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 17.5 |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 2.8 \cdot 10^{-143}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 4.6 \cdot 10^{-80}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 3.1 \cdot 10^{-40}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 1.1 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -24:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq 1.56 \cdot 10^{+22}:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + \left(x + y \cdot x\right)
\]