| Alternative 1 |
|---|
| Accuracy | 61.1% |
|---|
| Cost | 652 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -6.6 \cdot 10^{-77}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.65 \cdot 10^{-38}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 6 \cdot 10^{+104}:\\
\;\;\;\;y \cdot z\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(-z\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 84.1% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.16 \cdot 10^{-76} \lor \neg \left(z \leq 1.65 \cdot 10^{-38}\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 98.9% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \lor \neg \left(z \leq 1\right):\\
\;\;\;\;\left(y - x\right) \cdot z\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 61.3% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -2.3 \cdot 10^{-77}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 1.8 \cdot 10^{-38}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]