| Alternative 1 |
|---|
| Error | 0.0 |
|---|
| Cost | 6720 |
|---|
\[\mathsf{fma}\left(y, z - x, x\right)
\]
| Alternative 2 |
|---|
| Error | 24.2 |
|---|
| Cost | 984 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -2.1 \cdot 10^{+137}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq -65000000000:\\
\;\;\;\;-y \cdot x\\
\mathbf{elif}\;y \leq -2.7 \cdot 10^{-36}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{-197}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 6.8 \cdot 10^{-165}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 3.5 \cdot 10^{-41}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 3 |
|---|
| Error | 13.0 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(z - x\right)\\
\mathbf{if}\;y \leq -7.2 \cdot 10^{-39}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{-197}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 6.8 \cdot 10^{-165}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{-40}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Error | 12.6 |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(z - x\right)\\
\mathbf{if}\;y \leq -1.3 \cdot 10^{-37}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{-197}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 6.8 \cdot 10^{-165}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 0.0056:\\
\;\;\;\;\left(1 - y\right) \cdot x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Error | 24.1 |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -1.6 \cdot 10^{-39}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 2.2 \cdot 10^{-197}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 6.8 \cdot 10^{-165}:\\
\;\;\;\;y \cdot z\\
\mathbf{elif}\;y \leq 6.4 \cdot 10^{-40}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;y \cdot z\\
\end{array}
\]
| Alternative 6 |
|---|
| Error | 0.0 |
|---|
| Cost | 640 |
|---|
\[\left(x + y \cdot z\right) + \left(-x \cdot y\right)
\]
| Alternative 7 |
|---|
| Error | 0.9 |
|---|
| Cost | 584 |
|---|
\[\begin{array}{l}
t_0 := y \cdot \left(z - x\right)\\
\mathbf{if}\;y \leq -135000:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq 0.0126:\\
\;\;\;\;x + y \cdot z\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 8 |
|---|
| Error | 0.0 |
|---|
| Cost | 448 |
|---|
\[x + y \cdot \left(z - x\right)
\]