| Alternative 1 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 6848 |
|---|
\[\mathsf{fma}\left(y - x, 6 \cdot z, x\right)
\]
| Alternative 2 |
|---|
| Accuracy | 83.0% |
|---|
| Cost | 976 |
|---|
\[\begin{array}{l}
t_0 := 6 \cdot \left(\left(y - x\right) \cdot z\right)\\
\mathbf{if}\;z \leq -4 \cdot 10^{-112}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 7.8 \cdot 10^{-112}:\\
\;\;\;\;x\\
\mathbf{elif}\;z \leq 3.6 \cdot 10^{-97}:\\
\;\;\;\;z \cdot \left(y \cdot 6\right)\\
\mathbf{elif}\;z \leq 2.4 \cdot 10^{-42}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 54.3% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := 6 \cdot \left(y \cdot z\right)\\
\mathbf{if}\;y \leq -6.8 \cdot 10^{-110}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -8.6 \cdot 10^{-265}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.9 \cdot 10^{-301}:\\
\;\;\;\;-6 \cdot \left(x \cdot z\right)\\
\mathbf{elif}\;y \leq 1.95 \cdot 10^{+37}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 54.2% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
t_0 := 6 \cdot \left(y \cdot z\right)\\
\mathbf{if}\;y \leq -9.2 \cdot 10^{-110}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;y \leq -5.5 \cdot 10^{-264}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 1.85 \cdot 10^{-303}:\\
\;\;\;\;z \cdot \left(x \cdot -6\right)\\
\mathbf{elif}\;y \leq 1.5 \cdot 10^{+38}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;t_0\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 54.2% |
|---|
| Cost | 848 |
|---|
\[\begin{array}{l}
\mathbf{if}\;y \leq -9.2 \cdot 10^{-110}:\\
\;\;\;\;z \cdot \left(y \cdot 6\right)\\
\mathbf{elif}\;y \leq -6.5 \cdot 10^{-264}:\\
\;\;\;\;x\\
\mathbf{elif}\;y \leq 2.35 \cdot 10^{-301}:\\
\;\;\;\;z \cdot \left(x \cdot -6\right)\\
\mathbf{elif}\;y \leq 9.5 \cdot 10^{+36}:\\
\;\;\;\;x\\
\mathbf{else}:\\
\;\;\;\;6 \cdot \left(y \cdot z\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -700000000 \lor \neg \left(z \leq 0.17\right):\\
\;\;\;\;6 \cdot \left(\left(y - x\right) \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;x + 6 \cdot \left(y \cdot z\right)\\
\end{array}
\]
| Alternative 7 |
|---|
| Accuracy | 98.5% |
|---|
| Cost | 713 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -700000000 \lor \neg \left(z \leq 0.17\right):\\
\;\;\;\;6 \cdot \left(\left(y - x\right) \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;x + y \cdot \left(6 \cdot z\right)\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 61.3% |
|---|
| Cost | 585 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq -0.17 \lor \neg \left(z \leq 0.17\right):\\
\;\;\;\;-6 \cdot \left(x \cdot z\right)\\
\mathbf{else}:\\
\;\;\;\;x\\
\end{array}
\]
| Alternative 9 |
|---|
| Accuracy | 99.7% |
|---|
| Cost | 576 |
|---|
\[x + z \cdot \left(\left(y - x\right) \cdot 6\right)
\]
| Alternative 10 |
|---|
| Accuracy | 99.8% |
|---|
| Cost | 576 |
|---|
\[x + \left(y - x\right) \cdot \left(6 \cdot z\right)
\]