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