| Alternative 1 |
|---|
| Error | 0.0 |
|---|
| Cost | 6720 |
|---|
\[\mathsf{fma}\left(y - x, z, x\right)
\]
| Alternative 2 |
|---|
| Error | 26.5 |
|---|
| Cost | 1048 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -95000000000000:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq -1.55 \cdot 10^{-79}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;x \leq -3.35 \cdot 10^{-161}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 2.8 \cdot 10^{-9}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;x \leq 3.4 \cdot 10^{+120}:\\
\;\;\;\;x\\
\mathbf{elif}\;x \leq 8.5 \cdot 10^{+138}:\\
\;\;\;\;-z \cdot x\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 18.6 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := \left(1 - z\right) \cdot x\\
\mathbf{if}\;y \leq -7.2 \cdot 10^{+41}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 14000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 1.25 \cdot 10^{+79}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 1.1 \cdot 10^{+124}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 12.7 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -1.25 \cdot 10^{-70}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 140000000:\\
\;\;\;\;\left(1 - z\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 0.8 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := \left(y - x\right) \cdot z\\
\mathbf{if}\;z \leq -1:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 1:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 576 |
|---|
\[\left(y \cdot z + x\right) - z \cdot x
\]
| Alternative 7 |
|---|
| Error | 24.1 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -7.6 \cdot 10^{-70}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;z \leq 3.9 \cdot 10^{-16}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + \left(y - x\right) \cdot z
\]