| Alternative 1 |
|---|
| Accuracy | 99.6% |
|---|
| Cost | 6984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{+154}:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 3 \cdot 10^{+92}:\\
\;\;\;\;\sqrt{y + x \cdot x}\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 89.1% |
|---|
| Cost | 6728 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.5 \cdot 10^{-32}:\\
\;\;\;\;y \cdot \frac{-0.5}{x} - x\\
\mathbf{elif}\;x \leq 1.5 \cdot 10^{-61}:\\
\;\;\;\;\sqrt{y}\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 66.4% |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 1.95 \cdot 10^{-230}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;x + 0.5 \cdot \frac{y}{x}\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 66.4% |
|---|
| Cost | 260 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5 \cdot 10^{-310}:\\
\;\;\;\;-x\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]