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