| Alternative 1 |
|---|
| Error | 30.5 |
|---|
| Cost | 1381 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 6.5 \cdot 10^{-297}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;b \leq 2.8 \cdot 10^{-276}:\\
\;\;\;\;d \cdot a\\
\mathbf{elif}\;b \leq 1.55 \cdot 10^{-257}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;b \leq 1.32 \cdot 10^{-239}:\\
\;\;\;\;d \cdot a\\
\mathbf{elif}\;b \leq 5 \cdot 10^{-190}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;b \leq 1.95 \cdot 10^{-174}:\\
\;\;\;\;d \cdot a\\
\mathbf{elif}\;b \leq 2.9 \cdot 10^{-134} \lor \neg \left(b \leq 2.8 \cdot 10^{-97}\right) \land b \leq 5.2 \cdot 10^{-89}:\\
\;\;\;\;c \cdot a\\
\mathbf{else}:\\
\;\;\;\;a \cdot b\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 13.9 |
|---|
| Cost | 717 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d \leq 9.5 \cdot 10^{-70} \lor \neg \left(d \leq 2.3 \cdot 10^{-61}\right) \land d \leq 1.05 \cdot 10^{-57}:\\
\;\;\;\;a \cdot \left(c + b\right)\\
\mathbf{else}:\\
\;\;\;\;d \cdot a\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 9.6 |
|---|
| Cost | 717 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 3 \cdot 10^{-134} \lor \neg \left(b \leq 3.2 \cdot 10^{-97}\right) \land b \leq 5.8 \cdot 10^{-89}:\\
\;\;\;\;\left(c + d\right) \cdot a\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(d + b\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 30.4 |
|---|
| Cost | 589 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 2.9 \cdot 10^{-134} \lor \neg \left(b \leq 5.2 \cdot 10^{-98}\right) \land b \leq 4 \cdot 10^{-89}:\\
\;\;\;\;c \cdot a\\
\mathbf{else}:\\
\;\;\;\;a \cdot b\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[\left(c + d\right) \cdot a + a \cdot b
\]
| Alternative 6 |
|---|
| Error | 9.6 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;b \leq 1.65 \cdot 10^{-106}:\\
\;\;\;\;\left(c + d\right) \cdot a\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(c + b\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[a \cdot \left(d + \left(c + b\right)\right)
\]