| Alternative 1 |
|---|
| Accuracy | 51.7% |
|---|
| Cost | 1380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 1.55 \cdot 10^{-262}:\\
\;\;\;\;a \cdot c\\
\mathbf{elif}\;b \leq 1.65 \cdot 10^{-251}:\\
\;\;\;\;d \cdot a\\
\mathbf{elif}\;b \leq 5.2 \cdot 10^{-244}:\\
\;\;\;\;a \cdot c\\
\mathbf{elif}\;b \leq 1.05 \cdot 10^{-199}:\\
\;\;\;\;d \cdot a\\
\mathbf{elif}\;b \leq 6.4 \cdot 10^{-184}:\\
\;\;\;\;a \cdot c\\
\mathbf{elif}\;b \leq 2.6 \cdot 10^{-151}:\\
\;\;\;\;d \cdot a\\
\mathbf{elif}\;b \leq 9.5 \cdot 10^{-130}:\\
\;\;\;\;a \cdot c\\
\mathbf{elif}\;b \leq 1.2 \cdot 10^{-104}:\\
\;\;\;\;d \cdot a\\
\mathbf{elif}\;b \leq 2.4 \cdot 10^{-84}:\\
\;\;\;\;a \cdot c\\
\mathbf{else}:\\
\;\;\;\;a \cdot b\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 78.4% |
|---|
| Cost | 982 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d \leq 7 \cdot 10^{-147} \lor \neg \left(d \leq 8.5 \cdot 10^{-142}\right) \land \left(d \leq 1.5 \cdot 10^{-130} \lor \neg \left(d \leq 1.65 \cdot 10^{-119}\right) \land d \leq 2.4 \cdot 10^{-108}\right):\\
\;\;\;\;a \cdot \left(c + b\right)\\
\mathbf{else}:\\
\;\;\;\;d \cdot a\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 51.6% |
|---|
| Cost | 589 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 9.5 \cdot 10^{-130} \lor \neg \left(b \leq 6.5 \cdot 10^{-104}\right) \land b \leq 2.4 \cdot 10^{-84}:\\
\;\;\;\;a \cdot c\\
\mathbf{else}:\\
\;\;\;\;a \cdot b\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 86.0% |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 9 \cdot 10^{-130}:\\
\;\;\;\;a \cdot \left(d + c\right)\\
\mathbf{elif}\;b \leq 3.6 \cdot 10^{-106}:\\
\;\;\;\;a \cdot \left(d + b\right)\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(c + b\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 576 |
|---|
\[a \cdot \left(c + b\right) + d \cdot a
\]
| Alternative 6 |
|---|
| Accuracy | 85.5% |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 3.9 \cdot 10^{-108}:\\
\;\;\;\;a \cdot \left(d + c\right)\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(c + b\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 448 |
|---|
\[a \cdot \left(d + \left(c + b\right)\right)
\]