| Alternative 1 |
|---|
| Error | 11.1 |
|---|
| Cost | 580 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 2:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;2 \cdot \frac{1 + \left(\frac{s}{x} + -1\right)}{\frac{x}{s}}\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 11.1 |
|---|
| Cost | 388 |
|---|
\[\begin{array}{l}
\mathbf{if}\;\frac{-x}{s} \leq 20:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;1 + \left(\frac{s}{x} + -1\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.7 |
|---|
| Cost | 356 |
|---|
\[\begin{array}{l}
t_0 := \frac{-x}{s}\\
\mathbf{if}\;t_0 \leq 2:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{1}{t_0}\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 17.3 |
|---|
| Cost | 196 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.999999968033578 \cdot 10^{-12}:\\
\;\;\;\;\frac{-s}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 17.2 |
|---|
| Cost | 164 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -9.999999974752427 \cdot 10^{-7}:\\
\;\;\;\;\frac{s}{x}\\
\mathbf{else}:\\
\;\;\;\;0.5\\
\end{array}
\]