| Alternative 1 |
|---|
| Error | 15.4 |
|---|
| Cost | 1448 |
|---|
\[\begin{array}{l}
t_0 := -0.5 - \frac{x}{s} \cdot 0.25\\
\mathbf{if}\;x \leq -499999993495552:\\
\;\;\;\;\frac{1}{-\frac{x}{s}}\\
\mathbf{elif}\;x \leq 9.99999983775159 \cdot 10^{-18}:\\
\;\;\;\;\left(0.5 - \frac{x}{s} \cdot -0.25\right) \cdot \left(t_0 \cdot \left(t_0 \cdot \frac{\frac{1}{t_0}}{t_0}\right)\right)\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 16.3 |
|---|
| Cost | 292 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 5.000000136226006 \cdot 10^{-28}:\\
\;\;\;\;\frac{1}{2 - \frac{x}{s}}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.7 |
|---|
| Cost | 260 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.999999969612645 \cdot 10^{-9}:\\
\;\;\;\;\frac{1}{-\frac{x}{s}}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 17.2 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.999999969612645 \cdot 10^{-9}:\\
\;\;\;\;-\frac{s}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]