| Alternative 1 |
|---|
| Error | 23.7 |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2 \cdot 10^{+250}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -4.5 \cdot 10^{+120}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -2.9 \cdot 10^{-61}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.02 \cdot 10^{-52}:\\
\;\;\;\;-z\\
\mathbf{elif}\;x \leq 1.52 \cdot 10^{+57}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 12.5 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.2 \cdot 10^{-68} \lor \neg \left(x \leq 6.5 \cdot 10^{-53}\right):\\
\;\;\;\;x \cdot \left(y + z\right)\\
\mathbf{else}:\\
\;\;\;\;-z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 0.9 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -48 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y + z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y - z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 23.9 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -5.5 \cdot 10^{-61}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.02 \cdot 10^{-52}:\\
\;\;\;\;-z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x \cdot \left(y + z\right) - z
\]