| Alternative 1 |
|---|
| Accuracy | 87.7% |
|---|
| Cost | 844 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 3.6 \cdot 10^{-137}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;y \leq 1.15 \cdot 10^{-119}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 5.4 \cdot 10^{-105}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y + \left(x + x\right)\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 704 |
|---|
\[x \cdot \left(x + y \cdot 2\right) + y \cdot y
\]
| Alternative 3 |
|---|
| Accuracy | 87.7% |
|---|
| Cost | 589 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 2.7 \cdot 10^{-137} \lor \neg \left(y \leq 2 \cdot 10^{-117}\right) \land y \leq 1.65 \cdot 10^{-103}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 98.3% |
|---|
| Cost | 448 |
|---|
\[y \cdot y + x \cdot x
\]