| Alternative 1 |
|---|
| Error | 36.82% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.8 \cdot 10^{+121}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq -2.5 \cdot 10^{+28}:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{elif}\;x \leq -1.6 \cdot 10^{-17}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 4.9 \cdot 10^{-57}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 25.35% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.3 \cdot 10^{-204} \lor \neg \left(y \leq 1.7 \cdot 10^{-128}\right):\\
\;\;\;\;y \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 19.51% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.2 \cdot 10^{-17} \lor \neg \left(x \leq 1.05 \cdot 10^{-51}\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.33% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -180000 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + x \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.02% |
|---|
| Cost | 576 |
|---|
\[y \cdot \left(1 - x\right) + x \cdot z
\]
| Alternative 6 |
|---|
| Error | 36.85% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -8.6 \cdot 10^{-18}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 8 \cdot 10^{-50}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]