| Alternative 1 |
|---|
| Error | 0.1 |
|---|
| Cost | 6848 |
|---|
\[\mathsf{fma}\left(y, x, z \cdot \left(5 + x\right)\right)
\]
| Alternative 2 |
|---|
| Error | 23.5 |
|---|
| Cost | 852 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.8 \cdot 10^{+150}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq -1.1 \cdot 10^{+67}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq -2.2 \cdot 10^{+41}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq -2.1547795036167508 \cdot 10^{-20}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 3.057637814609522:\\
\;\;\;\;z \cdot 5\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.4 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z + y\right)\\
\mathbf{if}\;x \leq -2.1547795036167508 \cdot 10^{-20}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 3.057637814609522:\\
\;\;\;\;z \cdot 5 + z \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 0.9 |
|---|
| Cost | 712 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z + y\right)\\
\mathbf{if}\;x \leq -76.55260091418698:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 3.057637814609522:\\
\;\;\;\;x \cdot y + z \cdot 5\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 12.6 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z + y\right)\\
\mathbf{if}\;x \leq -2.1547795036167508 \cdot 10^{-20}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 3.057637814609522:\\
\;\;\;\;z \cdot 5\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 12.4 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z + y\right)\\
\mathbf{if}\;x \leq -2.1547795036167508 \cdot 10^{-20}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 3.057637814609522:\\
\;\;\;\;z \cdot \left(5 + x\right)\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.1 |
|---|
| Cost | 576 |
|---|
\[z \cdot \left(5 + x\right) + x \cdot y
\]
| Alternative 8 |
|---|
| Error | 25.0 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.1547795036167508 \cdot 10^{-20}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq 3.057637814609522:\\
\;\;\;\;z \cdot 5\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]