| Alternative 1 |
|---|
| Error | 13.7 |
|---|
| Cost | 1112 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(y \cdot 3\right)\\
\mathbf{if}\;y \leq -15.43664985419118:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -2.855288375131428 \cdot 10^{-15}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;y \leq -3.3891342064542596 \cdot 10^{-50}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.564277923305058 \cdot 10^{-129}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;y \leq 3.2669195610963446 \cdot 10^{-109}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.7644074140531417 \cdot 10^{-54}:\\
\;\;\;\;x \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 11.8 |
|---|
| Cost | 976 |
|---|
\[\begin{array}{l}
t_0 := y \cdot y + x \cdot x\\
t_1 := y \cdot \left(y \cdot 3\right)\\
\mathbf{if}\;x \leq -4.562478904418842 \cdot 10^{-46}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.4550457831148832 \cdot 10^{-63}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -7.926035253336066 \cdot 10^{-95}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.3222745975240562 \cdot 10^{-27}:\\
\;\;\;\;t_1\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[x \cdot x + \left(y \cdot y\right) \cdot 3
\]
| Alternative 4 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[y \cdot \left(y \cdot 3\right) + x \cdot x
\]
| Alternative 5 |
|---|
| Error | 26.0 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.736526203875494 \cdot 10^{-126}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 4.0227748524334796 \cdot 10^{-166}:\\
\;\;\;\;y \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]