| Alternative 1 |
|---|
| Accuracy | 62.5% |
|---|
| Cost | 1048.00 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(-x\right)\\
\mathbf{if}\;z \leq -1.5 \cdot 10^{+152}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -6.6 \cdot 10^{+125}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq -2500000000000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq -8.6 \cdot 10^{-26}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 4.1 \cdot 10^{-76}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 2.65 \cdot 10^{+20}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 72.5% |
|---|
| Cost | 850.00 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.1 \cdot 10^{-128} \lor \neg \left(x \leq 3.9 \cdot 10^{-262} \lor \neg \left(x \leq 4.6 \cdot 10^{-153}\right) \land x \leq 1.2 \cdot 10^{-85}\right):\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 80.1% |
|---|
| Cost | 585.00 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3100000 \lor \neg \left(z \leq 4.6 \cdot 10^{-76}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 - z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 80.1% |
|---|
| Cost | 585.00 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3100000 \lor \neg \left(z \leq 8 \cdot 10^{-77}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x - x \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 576.00 |
|---|
\[x + \left(y \cdot z - x \cdot z\right)
\]
| Alternative 6 |
|---|
| Accuracy | 62.3% |
|---|
| Cost | 456.00 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3.9 \cdot 10^{-23}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 3.7 \cdot 10^{-76}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448.00 |
|---|
\[x + \left(y - x\right) \cdot z
\]