| Alternative 1 |
|---|
| Error | 1.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(x \cdot x\right) \cdot -0.12\\
\mathbf{if}\;x \leq -326855712.47714084:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.5645384811959887:\\
\;\;\;\;1 + x \cdot -0.253\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(x \cdot -0.12\right)\\
\mathbf{if}\;x \leq -326855712.47714084:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.5645384811959887:\\
\;\;\;\;1 + x \cdot -0.253\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 2.1 |
|---|
| Cost | 448 |
|---|
\[1 - 0.12 \cdot \left(x \cdot x\right)
\]