| Alternative 1 |
|---|
| Error | 6.5 |
|---|
| Cost | 612 |
|---|
\[\begin{array}{l}
t_0 := 0.25 \cdot \frac{x}{s}\\
\mathbf{if}\;x \leq -4.000000094968912 \cdot 10^{-32}:\\
\;\;\;\;\left(0 - \left(-1 - \frac{1}{2 - \frac{x}{s}}\right)\right) - 1\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{0.5 + t_0} \cdot \left(0.25 + t_0\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.9 |
|---|
| Cost | 484 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 5.000000015855384 \cdot 10^{-30}:\\
\;\;\;\;\left(0 - \left(-1 - \frac{1}{2 - \frac{x}{s}}\right)\right) - 1\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.2 |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.99999987306209 \cdot 10^{-20}:\\
\;\;\;\;-\left(\left(0 - \left(-1 - \frac{s}{x}\right)\right) - 1\right)\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 16.6 |
|---|
| Cost | 292 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 5.000000015855384 \cdot 10^{-30}:\\
\;\;\;\;\frac{1}{2 - \frac{x}{s}}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 17.0 |
|---|
| Cost | 260 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.999999987376214 \cdot 10^{-7}:\\
\;\;\;\;\frac{1}{-\frac{x}{s}}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 17.4 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.999999987376214 \cdot 10^{-7}:\\
\;\;\;\;-\frac{s}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]