| Alternative 1 |
|---|
| Error | 17.11% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.000112 \lor \neg \left(x \leq 9 \cdot 10^{-57}\right) \land \left(x \leq 130000 \lor \neg \left(x \leq 6 \cdot 10^{+65}\right)\right):\\
\;\;\;\;y + x \cdot x\\
\mathbf{else}:\\
\;\;\;\;y + y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 18.49% |
|---|
| Cost | 721 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.1 \cdot 10^{-5}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 1.55 \cdot 10^{-55} \lor \neg \left(x \leq 180000\right) \land x \leq 6 \cdot 10^{+65}:\\
\;\;\;\;y + y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 59.48% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.3 \cdot 10^{-64}:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 2.3 \cdot 10^{-112}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[y + \left(y + x \cdot x\right)
\]