1 | | Numeric evaluation methods for the `polylog` function are commented out in the pynac source since it tries to call the `CLN` library directly. The calls to CLN should be replaced with their MPFR, etc. equivalents. |
2 | | |
3 | | {{{ |
4 | | sage: polylog(2,1.0) |
5 | | 1/6*pi^2 |
6 | | sage: polylog(2,0.9) |
7 | | polylog(2, 0.900000000000000) |
8 | | }}} |
9 | | |
10 | | This is also [http://hg.pynac.org/pynac/issue/3/numerical-evaluation-of-polylogarithms pynac issue #3] |
| 1 | Numeric evaluation methods for the Nielsen Generalized Polylogarithm are commented out in the pynac source since it tries to call the `CLN` library directly. The calls to CLN should be replaced with their MPFR, etc. equivalents and the function made available symbolically in Sage. The Pynac part is https://github.com/pynac/pynac/issues/3 |