x \cdot \log x
\mathsf{fma}\left(x \cdot 1, 2 \cdot \log \left(\sqrt[3]{x}\right), x \cdot \log \left(\sqrt[3]{x}\right)\right)double code(double x) {
return ((double) (x * ((double) log(x))));
}
double code(double x) {
return ((double) fma(((double) (x * 1.0)), ((double) (2.0 * ((double) log(((double) cbrt(x)))))), ((double) (x * ((double) log(((double) cbrt(x))))))));
}



Bits error versus x
Results
Initial program 0.3
rmApplied add-cube-cbrt0.3
Applied log-prod0.4
Applied distribute-lft-in0.4
Simplified0.4
rmApplied *-un-lft-identity0.4
Applied associate-*r*0.4
Applied fma-def0.3
Final simplification0.3
herbie shell --seed 2020113 +o rules:numerics
(FPCore (x)
:name "Statistics.Distribution.Binomial:directEntropy from math-functions-0.1.5.2"
:precision binary64
(* x (log x)))