| Alternative 1 |
|---|
| Error | 32.75% |
|---|
| Cost | 845 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.5 \cdot 10^{-91} \lor \neg \left(x \leq -3.7 \cdot 10^{-103}\right) \land x \leq -5.5 \cdot 10^{-136}:\\
\;\;\;\;x \cdot \left(x + y \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 32.46% |
|---|
| Cost | 844 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(x + y \cdot 2\right)\\
\mathbf{if}\;x \leq -6.5 \cdot 10^{-93}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2.5 \cdot 10^{-103}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq -1.2 \cdot 10^{-134}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y + x \cdot 2\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 32.46% |
|---|
| Cost | 844 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.85 \cdot 10^{-91}:\\
\;\;\;\;x \cdot x + x \cdot \left(y \cdot 2\right)\\
\mathbf{elif}\;x \leq -5.6 \cdot 10^{-101}:\\
\;\;\;\;y \cdot y\\
\mathbf{elif}\;x \leq -1.22 \cdot 10^{-133}:\\
\;\;\;\;x \cdot \left(x + y \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot \left(y + x \cdot 2\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.03% |
|---|
| Cost | 832 |
|---|
\[\left(x \cdot x + y \cdot \left(x \cdot 2\right)\right) + y \cdot y
\]
| Alternative 5 |
|---|
| Error | 0.03% |
|---|
| Cost | 704 |
|---|
\[y \cdot y + x \cdot \left(x + y \cdot 2\right)
\]
| Alternative 6 |
|---|
| Error | 32.83% |
|---|
| Cost | 589 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4 \cdot 10^{-92} \lor \neg \left(x \leq -2.5 \cdot 10^{-101}\right) \land x \leq -1.22 \cdot 10^{-133}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot y\\
\end{array}
\]