| Alternative 1 |
|---|
| Error | 40.32% |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -1.55 \cdot 10^{+206}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.8 \cdot 10^{-72}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 9.6 \cdot 10^{-110}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 1.6:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 3.3 \cdot 10^{+80}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 26.23% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(1 - x\right)\\
\mathbf{if}\;z \leq -3.3 \cdot 10^{-67}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 10^{-256}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;z \leq 1.6 \cdot 10^{-226}:\\
\;\;\;\;z\\
\mathbf{elif}\;z \leq 5 \cdot 10^{-123}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 21.75% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.15 \cdot 10^{-72} \lor \neg \left(x \leq 2.5 \cdot 10^{-110}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.49% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 6.5 \cdot 10^{-5}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.03% |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(1 - x\right) + x \cdot y
\]
| Alternative 6 |
|---|
| Error | 40.17% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.2 \cdot 10^{-74}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.02 \cdot 10^{-109}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]