| Alternative 1 |
|---|
| Accuracy | 87.4% |
|---|
| Cost | 1101 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 3.7 \cdot 10^{-153} \lor \neg \left(x \cdot x \leq 1.7 \cdot 10^{-110}\right) \land x \cdot x \leq 5.8 \cdot 10^{-68}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 85.9% |
|---|
| Cost | 973 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 4.6 \cdot 10^{-153} \lor \neg \left(x \cdot x \leq 1.7 \cdot 10^{-110}\right) \land x \cdot x \leq 9 \cdot 10^{-50}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 56.1% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.9 \cdot 10^{-117}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 7.6 \cdot 10^{-106}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[y + \left(y + x \cdot x\right)
\]