| Alternative 1 |
|---|
| Error | 25.4 |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -9 \cdot 10^{-10}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -7.5 \cdot 10^{-50}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -3.8 \cdot 10^{-149}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.2 \cdot 10^{-48}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 4.3 \cdot 10^{+106}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 3.9 \cdot 10^{+184}:\\
\;\;\;\;x \cdot \left(-z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.8 |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.75 \cdot 10^{-12} \lor \neg \left(x \leq -1.2 \cdot 10^{-49}\right) \land \left(x \leq -3.8 \cdot 10^{-149} \lor \neg \left(x \leq 8.5 \cdot 10^{-49}\right)\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 25.2 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.5 \cdot 10^{-12}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -3.8 \cdot 10^{-50}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -3.8 \cdot 10^{-149}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 9.6 \cdot 10^{-49}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -400000000 \lor \neg \left(x \leq 0.0115\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.9 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -400000000:\\
\;\;\;\;x \cdot y - x \cdot z\\
\mathbf{elif}\;x \leq 0.0115:\\
\;\;\;\;z + x \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(y - z\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(1 - x\right) + x \cdot y
\]