| Alternative 1 |
|---|
| Error | 30.6 |
|---|
| Cost | 1380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7 \cdot 10^{+222}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;x \leq -1.55 \cdot 10^{+143}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq -7.1 \cdot 10^{+34}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;x \leq -1.55 \cdot 10^{-75}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 9.6 \cdot 10^{-175}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.75 \cdot 10^{-74}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 700000000000:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.35 \cdot 10^{+28}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;x \leq 1.3 \cdot 10^{+85}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 10.8 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3 \cdot 10^{-59} \lor \neg \left(z \leq 2.5 \cdot 10^{-31}\right):\\
\;\;\;\;z + 0.5 \cdot x\\
\mathbf{else}:\\
\;\;\;\;\left(0.5 + y\right) \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.2 \lor \neg \left(y \leq 1.72 \cdot 10^{-12}\right):\\
\;\;\;\;z + y \cdot x\\
\mathbf{else}:\\
\;\;\;\;z + 0.5 \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 16.5 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.1 \cdot 10^{+169}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 1.05 \cdot 10^{+48}:\\
\;\;\;\;\left(0.5 + y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 28.3 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.1 \cdot 10^{-56}:\\
\;\;\;\;0.5 \cdot x\\
\mathbf{elif}\;x \leq 315000000000:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;0.5 \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + \left(0.5 + y\right) \cdot x
\]