| Alternative 1 |
|---|
| Accuracy | 84.3% |
|---|
| Cost | 1101 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 9.4 \cdot 10^{-107} \lor \neg \left(x \cdot x \leq 2.02 \cdot 10^{-53}\right) \land x \cdot x \leq 3.4 \cdot 10^{-6}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 40.4% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.65 \cdot 10^{-125}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 1.9 \cdot 10^{-105}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 82.8% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.25:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 6.5 \cdot 10^{-47}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[y + \left(y + x \cdot x\right)
\]