Polylogarithm 6.14.0
Changes
- use
log1p(x)
instead oflog(1 + x)
to avoid a potential catastrophic cancellation (has not been observed) - remove unnecessary calls of
std::abs
andfabs
- replace
std::pow(2.0, n - 1)
bystd::exp2(n - 1)
which is faster on some systems - update
doctest.h
to 2.4.9