| Alternative 1 |
|---|
| Accuracy | 82.5% |
|---|
| Cost | 7380 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \log y\\
t_1 := t_0 - z\\
t_2 := \left(-z\right) - y\\
\mathbf{if}\;x \leq -9.5 \cdot 10^{+157}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -3.4 \cdot 10^{-84}:\\
\;\;\;\;t_2\\
\mathbf{elif}\;x \leq -2.4 \cdot 10^{-122}:\\
\;\;\;\;t_1\\
\mathbf{elif}\;x \leq -4.8 \cdot 10^{-141}:\\
\;\;\;\;t_0 - y\\
\mathbf{elif}\;x \leq 2.8 \cdot 10^{+36}:\\
\;\;\;\;t_2\\
\mathbf{else}:\\
\;\;\;\;t_1\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 85.5% |
|---|
| Cost | 6985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -3 \cdot 10^{+101} \lor \neg \left(z \leq 1.02 \cdot 10^{+18}\right):\\
\;\;\;\;\left(-z\right) - y\\
\mathbf{else}:\\
\;\;\;\;x \cdot \log y - y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 79.1% |
|---|
| Cost | 6857 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.02 \cdot 10^{+158} \lor \neg \left(x \leq 1.7 \cdot 10^{+55}\right):\\
\;\;\;\;x \cdot \log y\\
\mathbf{else}:\\
\;\;\;\;\left(-z\right) - y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 6848 |
|---|
\[\left(x \cdot \log y - z\right) - y
\]
| Alternative 5 |
|---|
| Accuracy | 53.2% |
|---|
| Cost | 392 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5.5 \cdot 10^{+104}:\\
\;\;\;\;-z\\
\mathbf{elif}\;z \leq 3.2 \cdot 10^{+31}:\\
\;\;\;\;-y\\
\mathbf{else}:\\
\;\;\;\;-z\\
\end{array}
\]