| Alternative 1 |
|---|
| Error | 29.8 |
|---|
| Cost | 1116 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 1.75 \cdot 10^{-252}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;b \leq 1.2 \cdot 10^{-233}:\\
\;\;\;\;a \cdot d\\
\mathbf{elif}\;b \leq 1.4 \cdot 10^{-160}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;b \leq 2.7 \cdot 10^{-151}:\\
\;\;\;\;a \cdot d\\
\mathbf{elif}\;b \leq 7 \cdot 10^{-132}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;b \leq 6 \cdot 10^{-112}:\\
\;\;\;\;a \cdot d\\
\mathbf{elif}\;b \leq 9.5 \cdot 10^{-103}:\\
\;\;\;\;c \cdot a\\
\mathbf{else}:\\
\;\;\;\;b \cdot a\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.0 |
|---|
| Cost | 717 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d \leq 6.2 \cdot 10^{-95} \lor \neg \left(d \leq 7.4 \cdot 10^{-75}\right) \land d \leq 3.65 \cdot 10^{-65}:\\
\;\;\;\;\left(b + c\right) \cdot a\\
\mathbf{else}:\\
\;\;\;\;a \cdot d\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 10.3 |
|---|
| Cost | 717 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 1.36 \cdot 10^{-189} \lor \neg \left(b \leq 8.5 \cdot 10^{-170}\right) \land b \leq 1.22 \cdot 10^{-126}:\\
\;\;\;\;a \cdot \left(c + d\right)\\
\mathbf{else}:\\
\;\;\;\;\left(b + c\right) \cdot a\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[a \cdot \left(\left(b + c\right) + d\right)
\]
| Alternative 5 |
|---|
| Error | 30.0 |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 1.06 \cdot 10^{-102}:\\
\;\;\;\;c \cdot a\\
\mathbf{else}:\\
\;\;\;\;b \cdot a\\
\end{array}
\]