| Alternative 1 |
|---|
| Accuracy | 48.9% |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-z\right)\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -5.2 \cdot 10^{-139}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -7.2 \cdot 10^{-158}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 3.6 \cdot 10^{+72}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 63.1% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -31000000 \lor \neg \left(x \leq -2.2 \cdot 10^{-115} \lor \neg \left(x \leq -7.2 \cdot 10^{-158}\right) \land x \leq 2500000000\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 49.6% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -30000000:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -5.2 \cdot 10^{-139}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -7.2 \cdot 10^{-158}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.75 \cdot 10^{-7}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 59.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \cdot 10^{-184} \lor \neg \left(z \leq 10^{-66}\right):\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 77.9% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 1\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 79.0% |
|---|
| Cost | 576 |
|---|
\[x \cdot y + z \cdot \left(1 - x\right)
\]
| Alternative 7 |
|---|
| Accuracy | 79.0% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]