| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 6848 |
|---|
\[\mathsf{fma}\left(y, x, z \cdot \left(x + 5\right)\right)
\]
| Alternative 2 |
|---|
| Error | 24.6 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \cdot 10^{-45}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 5.4 \cdot 10^{-13}:\\
\;\;\;\;5 \cdot z\\
\mathbf{elif}\;x \leq 1.65 \cdot 10^{+102}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 5.9 \cdot 10^{+147}:\\
\;\;\;\;z \cdot x\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 16.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := z \cdot \left(x - -5\right)\\
\mathbf{if}\;z \leq -5.6 \cdot 10^{-117}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 18:\\
\;\;\;\;y \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 12.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y + z\right) \cdot x\\
\mathbf{if}\;x \leq -3.8 \cdot 10^{-9}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1250000000:\\
\;\;\;\;z \cdot \left(x - -5\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 | 24.7 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.2 \cdot 10^{-45}:\\
\;\;\;\;y \cdot x\\
\mathbf{elif}\;x \leq 2.05 \cdot 10^{-7}:\\
\;\;\;\;5 \cdot z\\
\mathbf{else}:\\
\;\;\;\;y \cdot x\\
\end{array}
\]