| Alternative 1 |
|---|
| Accuracy | 80.5% |
|---|
| Cost | 1101 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 1.95 \cdot 10^{-180} \lor \neg \left(y \cdot y \leq 1.05 \cdot 10^{-133}\right) \land y \cdot y \leq 2.2 \cdot 10^{-123}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 80.6% |
|---|
| Cost | 1101 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \cdot y \leq 10^{-181} \lor \neg \left(y \cdot y \leq 4 \cdot 10^{-134}\right) \land y \cdot y \leq 2 \cdot 10^{-123}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 80.3% |
|---|
| Cost | 977 |
|---|
\[\begin{array}{l}
t_0 := x \cdot x + y \cdot y\\
\mathbf{if}\;x \leq -350000000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -3.05 \cdot 10^{-27}:\\
\;\;\;\;3 \cdot \left(y \cdot y\right)\\
\mathbf{elif}\;x \leq -3.1 \cdot 10^{-141} \lor \neg \left(x \leq 5.8 \cdot 10^{-62}\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y \cdot 3\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 576 |
|---|
\[x \cdot x + y \cdot \left(y \cdot 3\right)
\]