| Alternative 1 |
|---|
| Accuracy | 85.6% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;y \leq 6.2 \cdot 10^{-197}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 6.1 \cdot 10^{-149}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.3 \cdot 10^{-74}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 86.2% |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 6.2 \cdot 10^{-197}:\\
\;\;\;\;x \cdot \left(1 - y\right)\\
\mathbf{elif}\;y \leq 6.1 \cdot 10^{-149}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.7 \cdot 10^{-75}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 86.2% |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 6.2 \cdot 10^{-197}:\\
\;\;\;\;x - y \cdot x\\
\mathbf{elif}\;y \leq 6.1 \cdot 10^{-149}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.85 \cdot 10^{-74}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 75.0% |
|---|
| Cost | 592 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;y \leq 6.2 \cdot 10^{-197}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 6.1 \cdot 10^{-149}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{-74}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 71.8% |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 6.2 \cdot 10^{-197}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2.9 \cdot 10^{-148}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 2.35 \cdot 10^{-74}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[\left(y + x\right) - y \cdot x
\]