| Alternative 1 |
|---|
| Error | 0.0 |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.7544275060164714 \cdot 10^{+154}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 1.4461216610068415 \cdot 10^{+141}:\\
\;\;\;\;\sqrt{y + x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 7.1 |
|---|
| Cost | 6728 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6 \cdot 10^{-31}:\\
\;\;\;\;y \cdot \frac{-0.5}{x} - x\\
\mathbf{elif}\;x \leq 4.1 \cdot 10^{-36}:\\
\;\;\;\;\sqrt{y}\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 20.8 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.9 \cdot 10^{-232}:\\
\;\;\;\;y \cdot \frac{-0.5}{x} - x\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 20.8 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.9 \cdot 10^{-232}:\\
\;\;\;\;y \cdot \frac{-0.5}{x} - x\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 20.9 |
|---|
| Cost | 260 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 0:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]