| Alternative 1 |
|---|
| Error | 25.5 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.6 \cdot 10^{+75}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -2.06 \cdot 10^{+49}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -1 \cdot 10^{-57}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -2.1 \cdot 10^{-81}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -4.6 \cdot 10^{-160}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 20.7 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.6 \cdot 10^{-53}:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq -8.2 \cdot 10^{-81}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -4.6 \cdot 10^{-160}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 20.3 |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.1 \cdot 10^{-55}:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq -2.8 \cdot 10^{-80}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -4.3 \cdot 10^{-160}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(x + 1\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 20.3 |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.2 \cdot 10^{-57}:\\
\;\;\;\;x \cdot \left(y + 1\right)\\
\mathbf{elif}\;x \leq -4.2 \cdot 10^{-81}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -4.6 \cdot 10^{-160}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y + y \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 29.1 |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6 \cdot 10^{-57}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -2.4 \cdot 10^{-81}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq -4.6 \cdot 10^{-160}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + \left(x + y \cdot x\right)
\]