| Alternative 1 |
|---|
| Error | 0.0 |
|---|
| Cost | 6720 |
|---|
\[\mathsf{fma}\left(x, z - y, y\right)
\]
| Alternative 2 |
|---|
| Error | 24.0 |
|---|
| Cost | 784 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -6 \cdot 10^{-16}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 2.4 \cdot 10^{-21}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 220000000:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 6 \cdot 10^{+58}:\\
\;\;\;\;x \cdot \left(-y\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z - y\right)\\
\mathbf{if}\;x \leq -9.5 \cdot 10^{-16}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 7.3 \cdot 10^{-17}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.0 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := x \cdot \left(z - y\right)\\
\mathbf{if}\;x \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq 1.76 \cdot 10^{-12}:\\
\;\;\;\;y + x \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[\left(1 - x\right) \cdot y + x \cdot z
\]
| Alternative 6 |
|---|
| Error | 23.7 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.6 \cdot 10^{-17}:\\
\;\;\;\;x \cdot z\\
\mathbf{elif}\;x \leq 6 \cdot 10^{-24}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;x \cdot z\\
\end{array}
\]
| Alternative 7 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]