| Alternative 1 |
|---|
| Error | 11.3 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6 \cdot 10^{+180}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -3.5 \cdot 10^{+27}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 1.55 \cdot 10^{+31}:\\
\;\;\;\;x + y\\
\mathbf{elif}\;x \leq 1.35 \cdot 10^{+45}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;x + y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 20.6 |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.3 \cdot 10^{+180}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -3.3 \cdot 10^{+28}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -4.8 \cdot 10^{-47}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 5 \cdot 10^{-10}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(1 + y\right) \cdot x\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 5.6 \cdot 10^{-10}:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1:\\
\;\;\;\;y \cdot x + x\\
\mathbf{elif}\;x \leq 5.6 \cdot 10^{-10}:\\
\;\;\;\;x + y\\
\mathbf{else}:\\
\;\;\;\;\left(1 + y\right) \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[\left(x + y\right) + x \cdot y
\]
| Alternative 6 |
|---|
| Error | 18.9 |
|---|
| Cost | 328 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.8 \cdot 10^{-47}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 4.3 \cdot 10^{-10}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]