| Alternative 1 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 6848 |
|---|
\[\mathsf{fma}\left(x, z + y, z \cdot 5\right)
\]
| Alternative 2 |
|---|
| Accuracy | 98.6% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -3700 \lor \neg \left(x \leq 5\right):\\
\;\;\;\;x \cdot \left(z + y\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot 5 + x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 63.3% |
|---|
| Cost | 588 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -9.5 \cdot 10^{-57}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 5 \cdot 10^{-31}:\\
\;\;\;\;z \cdot 5\\
\mathbf{elif}\;x \leq 2.4 \cdot 10^{+211}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 75.5% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1 \cdot 10^{-125} \lor \neg \left(z \leq 7.2 \cdot 10^{-168}\right):\\
\;\;\;\;z \cdot \left(5 + x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 81.2% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.2 \cdot 10^{-50} \lor \neg \left(x \leq 48000\right):\\
\;\;\;\;x \cdot \left(z + y\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(5 + x\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 576 |
|---|
\[z \cdot 5 + x \cdot \left(z + y\right)
\]
| Alternative 7 |
|---|
| Accuracy | 63.3% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.6 \cdot 10^{-56}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 3.7 \cdot 10^{-31}:\\
\;\;\;\;z \cdot 5\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]