| Alternative 1 |
|---|
| Error | 37.12% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.5 \cdot 10^{-28}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -2.7 \cdot 10^{-71}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -2.8 \cdot 10^{-111}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.56% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8 \cdot 10^{+14} \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.13% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8 \cdot 10^{+14}:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq 1.95 \cdot 10^{-38}:\\
\;\;\;\;y + x\\
\mathbf{else}:\\
\;\;\;\;y + y \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 43.46% |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.5 \cdot 10^{-28}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -1.3 \cdot 10^{-73}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -2.8 \cdot 10^{-111}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.01% |
|---|
| Cost | 448 |
|---|
\[y + \left(x + y \cdot x\right)
\]
| Alternative 6 |
|---|
| Error | 21.88% |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.5:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;y + x\\
\end{array}
\]