| Alternative 1 |
|---|
| Accuracy | 48.8% |
|---|
| Cost | 985 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d3 \leq -2.6 \cdot 10^{-241}:\\
\;\;\;\;d2 \cdot d1\\
\mathbf{elif}\;d3 \leq -1.45 \cdot 10^{-277}:\\
\;\;\;\;3 \cdot d1\\
\mathbf{elif}\;d3 \leq 2.35 \cdot 10^{-256}:\\
\;\;\;\;d2 \cdot d1\\
\mathbf{elif}\;d3 \leq 3:\\
\;\;\;\;3 \cdot d1\\
\mathbf{elif}\;d3 \leq 5.2 \cdot 10^{+42} \lor \neg \left(d3 \leq 3.1 \cdot 10^{+60}\right):\\
\;\;\;\;d1 \cdot d3\\
\mathbf{else}:\\
\;\;\;\;d2 \cdot d1\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 75.4% |
|---|
| Cost | 717 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d3 \leq 6.2 \cdot 10^{-27}:\\
\;\;\;\;\left(3 + d2\right) \cdot d1\\
\mathbf{elif}\;d3 \leq 5.1 \cdot 10^{+42} \lor \neg \left(d3 \leq 3.6 \cdot 10^{+60}\right):\\
\;\;\;\;d1 \cdot \left(3 + d3\right)\\
\mathbf{else}:\\
\;\;\;\;d2 \cdot d1\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 77.3% |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d2 \leq -17000:\\
\;\;\;\;d2 \cdot d1\\
\mathbf{else}:\\
\;\;\;\;d1 \cdot \left(3 + d3\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 448 |
|---|
\[d1 \cdot \left(\left(3 + d2\right) + d3\right)
\]
| Alternative 5 |
|---|
| Accuracy | 49.0% |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d3 \leq 3:\\
\;\;\;\;3 \cdot d1\\
\mathbf{else}:\\
\;\;\;\;d1 \cdot d3\\
\end{array}
\]