| Alternative 1 |
|---|
| Error | 1.1 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -11598.679629717424:\\
\;\;\;\;0.16666666666666666 \cdot \left(x \cdot x\right)\\
\mathbf{elif}\;x \leq 0.9194664671186019:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{\frac{6}{x}}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 1.0 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 0.845418584155563:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x \cdot x}{6}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 1.0 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot x \leq 1:\\
\;\;\;\;-0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{x}{\frac{6}{x}}\\
\end{array}
\]