| Alternative 1 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 320 |
|---|
\[\left(1 - x\right) - y
\]
| Alternative 2 |
|---|
| Accuracy | 61.5% |
|---|
| Cost | 1052 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq -8.2 \cdot 10^{-176}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq -1.96 \cdot 10^{-238}:\\
\;\;\;\;-y\\
\mathbf{elif}\;x \leq 3.5 \cdot 10^{-307}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 2.7 \cdot 10^{-121}:\\
\;\;\;\;-y\\
\mathbf{elif}\;x \leq 4.4 \cdot 10^{-49}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 2.15 \cdot 10^{+58}:\\
\;\;\;\;-y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 86.4% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;1 - x \leq -5 \cdot 10^{+63}:\\
\;\;\;\;-x\\
\mathbf{elif}\;1 - x \leq 4 \cdot 10^{+18}:\\
\;\;\;\;1 - y\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 86.8% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -92000:\\
\;\;\;\;-y\\
\mathbf{elif}\;y \leq 2.8 \cdot 10^{+49}:\\
\;\;\;\;1 - x\\
\mathbf{else}:\\
\;\;\;\;-y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 61.8% |
|---|
| Cost | 392 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]