| Alternative 1 |
|---|
| Error | 30.5 |
|---|
| Cost | 1380 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d \leq 3.4 \cdot 10^{-290}:\\
\;\;\;\;b \cdot a\\
\mathbf{elif}\;d \leq 2.5 \cdot 10^{-274}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;d \leq 1.25 \cdot 10^{-264}:\\
\;\;\;\;b \cdot a\\
\mathbf{elif}\;d \leq 6.5 \cdot 10^{-260}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;d \leq 8.8 \cdot 10^{-249}:\\
\;\;\;\;b \cdot a\\
\mathbf{elif}\;d \leq 2.3 \cdot 10^{-160}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;d \leq 1.26 \cdot 10^{-136}:\\
\;\;\;\;b \cdot a\\
\mathbf{elif}\;d \leq 4.2 \cdot 10^{-103}:\\
\;\;\;\;c \cdot a\\
\mathbf{elif}\;d \leq 1.12 \cdot 10^{-100}:\\
\;\;\;\;b \cdot a\\
\mathbf{else}:\\
\;\;\;\;a \cdot d\\
\end{array}
\]
| Alternative 2 |
|---|
| Error | 0.1 |
|---|
| Cost | 960 |
|---|
\[\left(c \cdot a - \left(a \cdot d\right) \cdot -2\right) + a \cdot \left(b - d\right)
\]
| Alternative 3 |
|---|
| Error | 9.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
\mathbf{if}\;c \leq 3.8 \cdot 10^{-164}:\\
\;\;\;\;a \cdot \left(b + d\right)\\
\mathbf{elif}\;c \leq 2 \cdot 10^{-94}:\\
\;\;\;\;\left(b + c\right) \cdot a\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(c + d\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[c \cdot a + a \cdot \left(b + d\right)
\]
| Alternative 5 |
|---|
| Error | 12.9 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d \leq 1.2 \cdot 10^{-100}:\\
\;\;\;\;\left(b + c\right) \cdot a\\
\mathbf{else}:\\
\;\;\;\;a \cdot d\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 10.0 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d \leq 1.12 \cdot 10^{-100}:\\
\;\;\;\;\left(b + c\right) \cdot a\\
\mathbf{else}:\\
\;\;\;\;a \cdot \left(c + d\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[a \cdot \left(\left(b + c\right) + d\right)
\]
| Alternative 8 |
|---|
| Error | 30.1 |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;c \leq 5.5 \cdot 10^{-133}:\\
\;\;\;\;b \cdot a\\
\mathbf{else}:\\
\;\;\;\;c \cdot a\\
\end{array}
\]