| Alternative 1 |
|---|
| Accuracy | 86.9% |
|---|
| Cost | 844 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 6.8 \cdot 10^{-124}:\\
\;\;\;\;x \cdot \left(x + y \cdot 2\right)\\
\mathbf{elif}\;y \leq 4.8 \cdot 10^{-15}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 6.4 \cdot 10^{-6}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y + x \cdot 2\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 704 |
|---|
\[y \cdot \left(y + x \cdot 2\right) + x \cdot x
\]
| Alternative 3 |
|---|
| Accuracy | 86.5% |
|---|
| Cost | 589 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 8 \cdot 10^{-124} \lor \neg \left(y \leq 1.7 \cdot 10^{-15}\right) \land y \leq 4.5 \cdot 10^{-6}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 86.8% |
|---|
| Cost | 588 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq 8.5 \cdot 10^{-124}:\\
\;\;\;\;x \cdot \left(x + y \cdot 2\right)\\
\mathbf{elif}\;y \leq 9 \cdot 10^{-15}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;y \leq 6.3 \cdot 10^{-6}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]