| Alternative 1 |
|---|
| Error | 8.3 |
|---|
| Cost | 6992 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \frac{-0.5}{x} - x\\
\mathbf{if}\;x \leq -0.00076:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2 \cdot 10^{-46}:\\
\;\;\;\;\sqrt{y}\\
\mathbf{elif}\;x \leq -7 \cdot 10^{-112}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 3.15 \cdot 10^{-10}:\\
\;\;\;\;\sqrt{y}\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.2 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \cdot 10^{+154}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 1.45 \cdot 10^{+106}:\\
\;\;\;\;\sqrt{y + x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 20.9 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.5 \cdot 10^{-251}:\\
\;\;\;\;y \cdot \frac{-0.5}{x} - x\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 21.0 |
|---|
| Cost | 260 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]