| Alternative 1 |
|---|
| Error | 0.0 |
|---|
| Cost | 6720 |
|---|
\[\mathsf{fma}\left(x, z - y, y\right)
\]
| Alternative 2 |
|---|
| Error | 24.1 |
|---|
| Cost | 916 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(-x\right)\\
\mathbf{if}\;x \leq -2 \cdot 10^{+88}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;x \leq -2.5 \cdot 10^{-68}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq 2.1 \cdot 10^{-21}:\\
\;\;\;\;y\\
\mathbf{elif}\;x \leq 9.6 \cdot 10^{+66}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq 9 \cdot 10^{+105}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 12.7 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3.2 \cdot 10^{-67} \lor \neg \left(x \leq 6 \cdot 10^{-21}\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 1.0 |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1 \lor \neg \left(x \leq 0.26\right):\\
\;\;\;\;x \cdot \left(z - y\right)\\
\mathbf{else}:\\
\;\;\;\;y + z \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 23.9 |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.25 \cdot 10^{-70}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq 1.26 \cdot 10^{-20}:\\
\;\;\;\;y\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[y + x \cdot \left(z - y\right)
\]