| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \cdot 10^{+154}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 2 \cdot 10^{+97}:\\
\;\;\;\;\sqrt{y + x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 6.9 |
|---|
| Cost | 6728 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.5 \cdot 10^{-81}:\\
\;\;\;\;y \cdot \frac{-0.5}{x} - x\\
\mathbf{elif}\;x \leq 7.8 \cdot 10^{-60}:\\
\;\;\;\;\sqrt{y}\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 20.3 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 1.9 \cdot 10^{-253}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 20.3 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3 \cdot 10^{-309}:\\
\;\;\;\;y \cdot \frac{-0.5}{x} - x\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 20.4 |
|---|
| Cost | 260 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]