| Alternative 1 |
|---|
| Error | 23.8 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -1.7 \cdot 10^{+163}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.9 \cdot 10^{+89}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -4.5 \cdot 10^{-96}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -4.6 \cdot 10^{-117}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 3.8 \cdot 10^{-11}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.6 |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.00375 \lor \neg \left(x \leq -4.5 \cdot 10^{-96} \lor \neg \left(x \leq -4.3 \cdot 10^{-117}\right) \land x \leq 2.8 \cdot 10^{-11}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 23.6 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.00375:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -4.5 \cdot 10^{-96}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -4.6 \cdot 10^{-117}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 3.3 \cdot 10^{-11}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.8 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 0.095\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]