| Alternative 1 |
|---|
| Accuracy | 60.6% |
|---|
| Cost | 1313 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;y \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.9 \cdot 10^{-158}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.25 \cdot 10^{-86}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.8 \cdot 10^{-39}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 7 \cdot 10^{+79}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 1.35 \cdot 10^{+138} \lor \neg \left(y \leq 4.6 \cdot 10^{+277}\right) \land y \leq 1.22 \cdot 10^{+294}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 72.1% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1:\\
\;\;\;\;y \cdot \left(-x\right)\\
\mathbf{elif}\;y \leq 2.9 \cdot 10^{-158}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 8.2 \cdot 10^{-87}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.6 \cdot 10^{-39}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 72.6% |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
t_0 := x - x \cdot y\\
\mathbf{if}\;y \leq 2.9 \cdot 10^{-158}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.08 \cdot 10^{-82}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 3 \cdot 10^{-39}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 49.0% |
|---|
| Cost | 460 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 2.9 \cdot 10^{-158}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2 \cdot 10^{-85}:\\
\;\;\;\;y\\
\mathbf{elif}\;y \leq 4.6 \cdot 10^{-39}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[\left(x + y\right) - x \cdot y
\]