| Alternative 1 |
|---|
| Error | 1.2 |
|---|
| Cost | 840 |
|---|
\[\begin{array}{l}
t_0 := x \cdot -12 + 9 \cdot \left(x \cdot x\right)\\
\mathbf{if}\;x \leq -41.09187112638979:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7.135383061402566 \cdot 10^{-9}:\\
\;\;\;\;x \cdot -12 + 3\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.2 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-12 + 9 \cdot x\right)\\
\mathbf{if}\;x \leq -41.09187112638979:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7.135383061402566 \cdot 10^{-9}:\\
\;\;\;\;x \cdot -12 + 3\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.1 |
|---|
| Cost | 704 |
|---|
\[3 + \left(x \cdot -12 + 9 \cdot \left(x \cdot x\right)\right)
\]
| Alternative 4 |
|---|
| Error | 1.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(9 \cdot x\right)\\
\mathbf{if}\;x \leq -41.09187112638979:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7.135383061402566 \cdot 10^{-9}:\\
\;\;\;\;x \cdot -12 + 3\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 2.0 |
|---|
| Cost | 576 |
|---|
\[3 + 3 \cdot \left(x \cdot \left(x \cdot 3\right)\right)
\]