| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 6848 |
|---|
\[\mathsf{fma}\left(d3, d1, d1 \cdot \left(3 + d2\right)\right)
\]
| Alternative 2 |
|---|
| Error | 32.6 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d3 \leq -1.3157191095295453 \cdot 10^{-230}:\\
\;\;\;\;d1 \cdot d2\\
\mathbf{elif}\;d3 \leq -1.8932381539837348 \cdot 10^{-259}:\\
\;\;\;\;3 \cdot d1\\
\mathbf{elif}\;d3 \leq -2.868465379974503 \cdot 10^{-287}:\\
\;\;\;\;d1 \cdot d2\\
\mathbf{elif}\;d3 \leq 5.18153337869034 \cdot 10^{-82}:\\
\;\;\;\;3 \cdot d1\\
\mathbf{elif}\;d3 \leq 1.9972027386616268 \cdot 10^{-56}:\\
\;\;\;\;d1 \cdot d2\\
\mathbf{elif}\;d3 \leq 0.026017859781996115:\\
\;\;\;\;3 \cdot d1\\
\mathbf{else}:\\
\;\;\;\;d1 \cdot d3\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 14.8 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d2 \leq -1.6878743889231542 \cdot 10^{+21}:\\
\;\;\;\;d1 \cdot d2\\
\mathbf{else}:\\
\;\;\;\;d1 \cdot \left(3 + d3\right)\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 15.6 |
|---|
| Cost | 452 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d3 \leq 1.4065743134167878 \cdot 10^{-15}:\\
\;\;\;\;d1 \cdot \left(3 + d2\right)\\
\mathbf{else}:\\
\;\;\;\;d1 \cdot \left(3 + d3\right)\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.1 |
|---|
| Cost | 448 |
|---|
\[d1 \cdot \left(d3 + \left(3 + d2\right)\right)
\]
| Alternative 6 |
|---|
| Error | 33.4 |
|---|
| Cost | 324 |
|---|
\[\begin{array}{l}
\mathbf{if}\;d3 \leq 0.026017859781996115:\\
\;\;\;\;3 \cdot d1\\
\mathbf{else}:\\
\;\;\;\;d1 \cdot d3\\
\end{array}
\]