On my Linux PPC 32 bit box I got the following doctest failure due to numerical noise:
File "lcalc.py", line 188:
sage: E.Lseries().values_along_line(0.5, 3, 5)
Expected:
lcalc: 1.5 0 WARNING- we don't have enough Dirichlet coefficients.
lcalc: Will use the maximum possible, though the output will not necessarily be accurate.
lcalc: nan nan
[(0, 0.209951303),
(0.500000000, -2...e-16),
(1.00000000, 0.133768433),
(2.00000000, 0.552975867)]
Got:
lcalc: 1.5 0 WARNING- we don't have enough Dirichlet coefficients.
lcalc: Will use the maximum possible, though the output will not necessarily be accurate.
lcalc: nan nan
[(0, 0.209951303), (0.500000000, -3.16949699e-16), (1.00000000, 0.133768433), (2.00000000, 0.552975867)]
The attached patch fixes that.
On my Linux PPC 32 bit box I got the following doctest failure due to numerical noise:
The attached patch fixes that.
Cheers,
Michael
Component: doctest coverage
Issue created by migration from https://trac.sagemath.org/ticket/1335