| Alternative 1 |
|---|
| Accuracy | 84.0% |
|---|
| Cost | 7368 |
|---|
\[\begin{array}{l}
\mathbf{if}\;x \cdot 0.5 \leq -5 \cdot 10^{-62}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\mathbf{elif}\;x \cdot 0.5 \leq 5 \cdot 10^{+90}:\\
\;\;\;\;y \cdot \left(\left(1 + \log z\right) - z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 2 |
|---|
| Accuracy | 74.6% |
|---|
| Cost | 7180 |
|---|
\[\begin{array}{l}
t_0 := y + \log z \cdot y\\
\mathbf{if}\;z \leq 2.7 \cdot 10^{-241}:\\
\;\;\;\;t_0\\
\mathbf{elif}\;z \leq 7.5 \cdot 10^{-130}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\mathbf{elif}\;z \leq 2.75 \cdot 10^{-103}:\\
\;\;\;\;t_0\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 3 |
|---|
| Accuracy | 74.5% |
|---|
| Cost | 7117 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 4.2 \cdot 10^{-241} \lor \neg \left(z \leq 4.5 \cdot 10^{-129}\right) \land z \leq 4 \cdot 10^{-103}:\\
\;\;\;\;y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 4 |
|---|
| Accuracy | 74.6% |
|---|
| Cost | 7117 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 3.4 \cdot 10^{-241} \lor \neg \left(z \leq 6.2 \cdot 10^{-130}\right) \land z \leq 1.06 \cdot 10^{-103}:\\
\;\;\;\;y + \log z \cdot y\\
\mathbf{else}:\\
\;\;\;\;x \cdot 0.5 - z \cdot y\\
\end{array}
\]
| Alternative 5 |
|---|
| Accuracy | 98.7% |
|---|
| Cost | 7108 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 0.28:\\
\;\;\;\;x \cdot 0.5 + y \cdot \left(1 + \log z\right)\\
\mathbf{else}:\\
\;\;\;\;\mathsf{fma}\left(-z, y, x \cdot 0.5\right)\\
\end{array}
\]
| Alternative 6 |
|---|
| Accuracy | 99.9% |
|---|
| Cost | 7104 |
|---|
\[x \cdot 0.5 + \left(\left(1 - z\right) + \log z\right) \cdot y
\]
| Alternative 7 |
|---|
| Accuracy | 60.3% |
|---|
| Cost | 653 |
|---|
\[\begin{array}{l}
\mathbf{if}\;z \leq 40000000000000 \lor \neg \left(z \leq 3.2 \cdot 10^{+28}\right) \land z \leq 1.4 \cdot 10^{+43}:\\
\;\;\;\;x \cdot 0.5\\
\mathbf{else}:\\
\;\;\;\;z \cdot \left(-y\right)\\
\end{array}
\]
| Alternative 8 |
|---|
| Accuracy | 74.4% |
|---|
| Cost | 448 |
|---|
\[x \cdot 0.5 - z \cdot y
\]