| Alternative 1 |
|---|
| Accuracy | 51.5% |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;c \leq 6.5 \cdot 10^{-279}:\\
\;\;\;\;a \cdot b\\
\mathbf{elif}\;c \leq 1.18 \cdot 10^{-272}:\\
\;\;\;\;d \cdot a\\
\mathbf{elif}\;c \leq 3.7 \cdot 10^{-196}:\\
\;\;\;\;a \cdot b\\
\mathbf{elif}\;c \leq 9.2 \cdot 10^{-173}:\\
\;\;\;\;d \cdot a\\
\mathbf{elif}\;c \leq 2.15 \cdot 10^{-138}:\\
\;\;\;\;a \cdot b\\
\mathbf{elif}\;c \leq 1.05 \cdot 10^{-109}:\\
\;\;\;\;d \cdot a\\
\mathbf{else}:\\
\;\;\;\;c \cdot a\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 83.6% |
|---|
| Cost | 717 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d \leq 2 \cdot 10^{-164} \lor \neg \left(d \leq 5.7 \cdot 10^{-124}\right) \land d \leq 4.2 \cdot 10^{-104}:\\
\;\;\;\;a \cdot \left(c + b\right)\\
\mathbf{else}:\\
\;\;\;\;\left(c + d\right) \cdot a\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 84.8% |
|---|
| Cost | 716 |
|---|
\[\begin{array}{l}
t_0 := \left(c + d\right) \cdot a\\
\mathbf{if}\;b \leq 3.2 \cdot 10^{-197}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;b \leq 5.8 \cdot 10^{-192}:\\
\;\;\;\;a \cdot \left(d + b\right)\\
\mathbf{elif}\;b \leq 1.1 \cdot 10^{-111}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(c + b\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 79.4% |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d \leq 1.5 \cdot 10^{-88}:\\
\;\;\;\;a \cdot \left(c + b\right)\\
\mathbf{else}:\\
\;\;\;\;d \cdot a\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 448 |
|---|
\[a \cdot \left(d + \left(c + b\right)\right)
\]
| Alternative 6 |
|---|
| Accuracy | 52.4% |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;c \leq 3.5 \cdot 10^{-138}:\\
\;\;\;\;a \cdot b\\
\mathbf{else}:\\
\;\;\;\;c \cdot a\\
\end{array}
\]