| Alternative 1 |
|---|
| Error | 40.06% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.45 \cdot 10^{-123}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 1.1 \cdot 10^{-91}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;z \leq 1.1 \cdot 10^{+137}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 5.2 \cdot 10^{+162}:\\
\;\;\;\;z \cdot \left(-x\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 24.86% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -9.2 \cdot 10^{-131} \lor \neg \left(z \leq 1.8 \cdot 10^{-98}\right):\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 21.26% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -8 \cdot 10^{-127} \lor \neg \left(z \leq 2.5 \cdot 10^{-96}\right):\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(y - z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 39.49% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.7 \cdot 10^{-123}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 5.9 \cdot 10^{-92}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.03% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]