| Alternative 1 |
|---|
| Accuracy | 82.3% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -120000000000:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 1.7 \cdot 10^{-42}:\\
\;\;\;\;y \cdot \left(z \cdot -4\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 82.2% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -115000000000:\\
\;\;\;\;x \cdot x\\
\mathbf{elif}\;x \leq 1.8 \cdot 10^{-49}:\\
\;\;\;\;z \cdot \left(y \cdot -4\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 576 |
|---|
\[x \cdot x - y \cdot \left(z \cdot 4\right)
\]