| Alternative 1 |
|---|
| Accuracy | 76.6% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5.4 \cdot 10^{-118} \lor \neg \left(z \leq 1.1 \cdot 10^{-202} \lor \neg \left(z \leq 7 \cdot 10^{-186}\right) \land z \leq 1.2 \cdot 10^{+80}\right):\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(y - z\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 62.1% |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -1.25 \cdot 10^{+76}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.6 \cdot 10^{-56}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 7.2 \cdot 10^{-64}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 5.2:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.2% |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(y - z\right)\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 2 \cdot 10^{-7}:\\
\;\;\;\;z + x \cdot y\\
\mathbf{elif}\;x \leq 54000000000:\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 79.9% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -7.8 \cdot 10^{-59} \lor \neg \left(x \leq 1.95 \cdot 10^{-64}\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576 |
|---|
\[x \cdot y + z \cdot \left(1 - x\right)
\]
| Alternative 6 |
|---|
| Accuracy | 61.5% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6 \cdot 10^{-57}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 4.8 \cdot 10^{-65}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]