| Alternative 1 |
|---|
| Accuracy | 100.0% |
|---|
| Cost | 6848 |
|---|
\[\mathsf{fma}\left(z, 5, x \cdot \left(z + y\right)\right)
\]
| Alternative 2 |
|---|
| Accuracy | 75.4% |
|---|
| Cost | 850 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -1.05 \cdot 10^{-45} \lor \neg \left(z \leq -2.5 \cdot 10^{-76} \lor \neg \left(z \leq -8 \cdot 10^{-106}\right) \land z \leq 8.6 \cdot 10^{-119}\right):\\
\;\;\;\;z \cdot \left(5 + x\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 61.9% |
|---|
| Cost | 720 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -1.95 \cdot 10^{+117}:\\
\;\;\;\;z \cdot x\\
\mathbf{elif}\;x \leq -4 \cdot 10^{-6}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 2 \cdot 10^{-9}:\\
\;\;\;\;z \cdot 5\\
\mathbf{elif}\;x \leq 1.5 \cdot 10^{+54}:\\
\;\;\;\;x \cdot y\\
\mathbf{else}:\\
\;\;\;\;z \cdot x\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 85.4% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.0017 \lor \neg \left(x \leq 2.26 \cdot 10^{-7}\right):\\
\;\;\;\;x \cdot \left(z + y\right)\\
\mathbf{else}:\\
\;\;\;\;z \cdot 5 + z \cdot x\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 85.4% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -0.00195 \lor \neg \left(x \leq 1.45 \cdot 10^{-8}\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 | 62.1% |
|---|
| Cost | 456 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \leq -2.3 \cdot 10^{-6}:\\
\;\;\;\;x \cdot y\\
\mathbf{elif}\;x \leq 1.45 \cdot 10^{-9}:\\
\;\;\;\;z \cdot 5\\
\mathbf{else}:\\
\;\;\;\;x \cdot y\\
\end{array}
\]