| Alternative 1 |
|---|
| Accuracy | 63.5% |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
t_0 := 6 \cdot \left(y \cdot z\right)\\
\mathbf{if}\;z \leq -2.6 \cdot 10^{-39}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 6.9 \cdot 10^{-16}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 16200000000000:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;-6 \cdot \left(x \cdot z\right)\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 63.3% |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(6 \cdot z\right)\\
\mathbf{if}\;z \leq -2.5 \cdot 10^{-52}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1.52 \cdot 10^{-15}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 1120000000000:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;-6 \cdot \left(x \cdot z\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 63.4% |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -5.4 \cdot 10^{-48}:\\
\;\;\;\;z \cdot \left(y \cdot 6\right)\\
\mathbf{elif}\;z \leq 8 \cdot 10^{-16}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 40000000000000:\\
\;\;\;\;y \cdot \left(6 \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;-6 \cdot \left(x \cdot z\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 81.4% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.5 \cdot 10^{-43} \lor \neg \left(z \leq 6.8 \cdot 10^{-16}\right):\\
\;\;\;\;6 \cdot \left(\left(y - x\right) \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 79.8% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.2 \cdot 10^{-68} \lor \neg \left(x \leq 0.0025\right):\\
\;\;\;\;x \cdot \left(1 + z \cdot -6\right)\\
\mathbf{else}:\\
\;\;\;\;\left(y - x\right) \cdot \left(6 \cdot z\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 81.3% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.3 \cdot 10^{-46}:\\
\;\;\;\;6 \cdot \left(\left(y - x\right) \cdot z\right)\\
\mathbf{elif}\;z \leq 7.5 \cdot 10^{-16}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;\left(y - x\right) \cdot \left(6 \cdot z\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 79.8% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6.6 \cdot 10^{-68}:\\
\;\;\;\;x + z \cdot \left(x \cdot -6\right)\\
\mathbf{elif}\;x \leq 0.007:\\
\;\;\;\;\left(y - x\right) \cdot \left(6 \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot \left(1 + z \cdot -6\right)\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -0.205:\\
\;\;\;\;6 \cdot \left(\left(y - x\right) \cdot z\right)\\
\mathbf{elif}\;z \leq 0.165:\\
\;\;\;\;x + z \cdot \left(y \cdot 6\right)\\
\mathbf{else}:\\
\;\;\;\;\left(y - x\right) \cdot \left(6 \cdot z\right)\\
\end{array}
\]
| Alternative 9 |
|---|
| Accuracy | 62.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -0.0016 \lor \neg \left(z \leq 0.165\right):\\
\;\;\;\;-6 \cdot \left(x \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 10 |
|---|
| Accuracy | 99.6% |
|---|
| Cost | 576 |
|---|
\[x + z \cdot \left(\left(y - x\right) \cdot 6\right)
\]
| Alternative 11 |
|---|
| Accuracy | 99.7% |
|---|
| Cost | 576 |
|---|
\[x + \left(y - x\right) \cdot \left(6 \cdot z\right)
\]