| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 6848 |
|---|
\[\mathsf{fma}\left(x, y + z, z \cdot 5\right)
\]
| Alternative 2 |
|---|
| Error | 23.3 |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -4.6 \cdot 10^{+176}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq -1.22 \cdot 10^{-20}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 6.8 \cdot 10^{-12}:\\
\;\;\;\;5 \cdot z\\
\mathbf{elif}\;x \leq 2.5 \cdot 10^{+30}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 1.95 \cdot 10^{+53}:\\
\;\;\;\;z \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.3 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(5 + x\right)\\
\mathbf{if}\;z \leq -7.2 \cdot 10^{-69}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 3 \cdot 10^{-163}:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 12.2 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y + z\right) \cdot x\\
\mathbf{if}\;x \leq -5.2:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 34000000000000:\\
\;\;\;\;z \cdot \left(5 + x\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[x \cdot \left(y + z\right) + z \cdot 5
\]
| Alternative 6 |
|---|
| Error | 23.2 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.08 \cdot 10^{-21}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 2.6 \cdot 10^{-12}:\\
\;\;\;\;5 \cdot z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]