Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
trac 23247 some details
Browse files Browse the repository at this point in the history
  • Loading branch information
Frédéric Chapoton committed Jun 17, 2017
1 parent 9bd5650 commit 390030b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/sage/modular/modform/element.py
Expand Up @@ -944,9 +944,11 @@ def symsquare_lseries(self, chi=None, embedding=0, prec=53):
N = chi.conductor()**3

if (chi is None) or chi.is_even():
L = Dokchitser(N, [0, 1, -weight + 2], 2 * weight - 1, eps, prec=prec)
L = Dokchitser(N, [0, 1, -weight + 2], 2 * weight - 1,
eps, prec=prec)
else:
L = Dokchitser(N, [0, 1, -weight + 1], 2 * weight - 1, eps*C('I'), prec=prec)
L = Dokchitser(N, [0, 1, -weight + 1], 2 * weight - 1,
eps * C((0, 1)), prec=prec)
lcoeffs_prec = L.num_coeffs()

t = verbose("Computing %s coefficients of F" % lcoeffs_prec, level=1)
Expand Down

0 comments on commit 390030b

Please sign in to comment.