| Alternative 1 |
|---|
| Error | 11.8 |
|---|
| Cost | 868 |
|---|
\[\begin{array}{l}
t_0 := \frac{1}{2 - \frac{x}{s}}\\
\mathbf{if}\;x \leq 9.999999796611898 \cdot 10^{-32}:\\
\;\;\;\;t_0 \cdot \left(t_0 \cdot \frac{1}{0.5 + 0.25 \cdot \frac{x}{s}}\right)\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 11.0 |
|---|
| Cost | 808 |
|---|
\[\begin{array}{l}
t_0 := \frac{1}{2 - \frac{x}{s}}\\
\mathbf{if}\;x \leq -4000000000:\\
\;\;\;\;t_0 \cdot \left(t_0 \cdot \left(4 \cdot \frac{s}{x}\right)\right)\\
\mathbf{elif}\;x \leq 9.999999796611898 \cdot 10^{-32}:\\
\;\;\;\;t_0 \cdot \left(-0.5 \cdot \frac{x}{s} + \left(1 + 0.5 \cdot \frac{x}{s}\right)\right)\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.7 |
|---|
| Cost | 740 |
|---|
\[\begin{array}{l}
t_0 := \frac{1}{2 - \frac{x}{s}}\\
\mathbf{if}\;x \leq -4.99999991225835 \cdot 10^{-15}:\\
\;\;\;\;t_0 \cdot \left(t_0 \cdot \left(4 \cdot \frac{s}{x}\right)\right)\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 13.2 |
|---|
| Cost | 612 |
|---|
\[\begin{array}{l}
t_0 := \frac{1}{2 - \frac{x}{s}}\\
\mathbf{if}\;x \leq -5.0000000900125474 \cdot 10^{-36}:\\
\;\;\;\;t_0 \cdot \left(t_0 \cdot 2\right)\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 13.6 |
|---|
| Cost | 484 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.99999991225835 \cdot 10^{-15}:\\
\;\;\;\;\frac{1}{2 - \frac{x}{s}} \cdot \left(-2 \cdot \frac{s}{x}\right)\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 16.5 |
|---|
| Cost | 292 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq 9.999999796611898 \cdot 10^{-32}:\\
\;\;\;\;\frac{1}{2 - \frac{x}{s}}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 16.8 |
|---|
| Cost | 260 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0010000000474974513:\\
\;\;\;\;\frac{1}{-\frac{x}{s}}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 17.2 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0010000000474974513:\\
\;\;\;\;-\frac{s}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]