| Alternative 1 |
|---|
| Error | 24.2 |
|---|
| Cost | 1248 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -4.4 \cdot 10^{+102}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -4.5 \cdot 10^{+61}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq -3.1 \cdot 10^{-58}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 9.2 \cdot 10^{-102}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2 \cdot 10^{-92}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 1:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 7.2 \cdot 10^{+167}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;y \leq 7.2 \cdot 10^{+233}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 16.5 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.6 \cdot 10^{-71} \lor \neg \left(x \leq 2.2 \cdot 10^{-60}\right):\\
\;\;\;\;x + x \cdot y\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 7.4 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.05 \cdot 10^{-44} \lor \neg \left(z \leq 5.2 \cdot 10^{-135}\right):\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 24.5 |
|---|
| Cost | 457 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1 \lor \neg \left(y \leq 1\right):\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(x + z\right)
\]