| Alternative 1 |
|---|
| Error | 2.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(x \cdot -9\right)\\
\mathbf{if}\;x \leq -3640.325933075684:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 0.0029421815227809534:\\
\;\;\;\;x \cdot 6\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 2.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3640.325933075684:\\
\;\;\;\;x \cdot \left(x \cdot -9\right)\\
\mathbf{elif}\;x \leq 0.0029421815227809534:\\
\;\;\;\;x \cdot 6\\
\mathbf{else}:\\
\;\;\;\;-9 \cdot \left(x \cdot x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.2 |
|---|
| Cost | 448 |
|---|
\[x \cdot \left(6 + x \cdot -9\right)
\]