| Alternative 1 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 320 |
|---|
\[\left(1 - x\right) - y
\]
| Alternative 2 |
|---|
| Accuracy | 62.1% |
|---|
| Cost | 920 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0062:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq -4.2 \cdot 10^{-238}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq -3.5 \cdot 10^{-283}:\\
\;\;\;\;-y\\
\mathbf{elif}\;x \leq 1.35 \cdot 10^{-273}:\\
\;\;\;\;1\\
\mathbf{elif}\;x \leq 5 \cdot 10^{-236}:\\
\;\;\;\;-y\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 86.6% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;1 - x \leq -1 \cdot 10^{+45}:\\
\;\;\;\;-x\\
\mathbf{elif}\;1 - x \leq 2:\\
\;\;\;\;1 - y\\
\mathbf{else}:\\
\;\;\;\;1 - x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 84.7% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.95 \cdot 10^{+110}:\\
\;\;\;\;-y\\
\mathbf{elif}\;y \leq 4.4 \cdot 10^{+72}:\\
\;\;\;\;1 - x\\
\mathbf{else}:\\
\;\;\;\;-y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 62.1% |
|---|
| Cost | 392 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0062:\\
\;\;\;\;-x\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;1\\
\mathbf{else}:\\
\;\;\;\;-x\\
\end{array}
\]