| Alternative 1 |
|---|
| Error | 18.6 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := 0.5 \cdot \frac{x}{y}\\
\mathbf{if}\;x \leq -1920:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2.45 \cdot 10^{-5}:\\
\;\;\;\;0.5\\
\mathbf{elif}\;x \leq 3.3 \cdot 10^{+47}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 4.5 \cdot 10^{+92}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 18.5 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := 0.5 \cdot \frac{x}{y}\\
\mathbf{if}\;x \leq -3850000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 9 \cdot 10^{-7}:\\
\;\;\;\;0.5\\
\mathbf{elif}\;x \leq 2.4 \cdot 10^{+51}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.05 \cdot 10^{+86}:\\
\;\;\;\;0.5\\
\mathbf{else}:\\
\;\;\;\;\frac{0.5 \cdot x}{y}\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[0.5 + 0.5 \cdot \frac{x}{y}
\]