| Alternative 1 |
|---|
| Accuracy | 60.9% |
|---|
| Cost | 1049 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(-z\right)\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -1.45 \cdot 10^{-62}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -2.8 \cdot 10^{-114}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 0.0135:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq 5.6 \cdot 10^{+86} \lor \neg \left(x \leq 2.15 \cdot 10^{+148}\right):\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 78.6% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.2 \cdot 10^{+19} \lor \neg \left(x \leq -5.4 \cdot 10^{-63} \lor \neg \left(x \leq -2.8 \cdot 10^{-114}\right) \land x \leq 85000000\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 61.8% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.55 \cdot 10^{-14}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -3.5 \cdot 10^{-64}:\\
\;\;\;\;z\\
\mathbf{elif}\;x \leq -2.8 \cdot 10^{-114}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.2 \cdot 10^{-34}:\\
\;\;\;\;z\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 74.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -7.8 \cdot 10^{-56} \lor \neg \left(z \leq 2.7 \cdot 10^{-168}\right):\\
\;\;\;\;z \cdot \left(1 - x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 98.7% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 0.0135\right):\\
\;\;\;\;x \cdot \left(y - z\right)\\
\mathbf{else}:\\
\;\;\;\;z + x \cdot y\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[z + x \cdot \left(y - z\right)
\]