| Alternative 1 |
|---|
| Error | 29.57% |
|---|
| Cost | 849 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -3.9 \cdot 10^{+84}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -6.4 \cdot 10^{+16} \lor \neg \left(y \leq -1.56 \cdot 10^{-24}\right) \land y \leq 1.55 \cdot 10^{-28}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 39.61% |
|---|
| Cost | 652 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.06 \cdot 10^{-51}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.95 \cdot 10^{-117}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 1.45 \cdot 10^{+181}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 21.77% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2 \cdot 10^{-51} \lor \neg \left(z \leq 2.7 \cdot 10^{-117}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.91% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 8.6 \cdot 10^{-13}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 39.91% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.05 \cdot 10^{-51}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 2.8 \cdot 10^{-117}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.02% |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]