Skip to content

Commit

Permalink
Merge pull request #5980 from thealexcowan/gamma1web
Browse files Browse the repository at this point in the history
Suppress L-function hyperlinks for level > 10000 and weight == 2
  • Loading branch information
edgarcosta authored Apr 11, 2024
2 parents 9e4c8ef + e581308 commit f9575b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lmfdb/classical_modular_forms/web_newform.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,7 +372,7 @@ def friends(self):
res += names_and_urls(related_objects)

# finally L-functions
if self.weight <= 200:
if (self.weight <= 200) and not ((self.level > 10000) and (self.weight == 2)): # L-functions for the weight 2 and level > 10000 forms haven't been computed as of 2024/04/11.
if (self.dim == 1 or not self.embedding_label) and db.lfunc_instances.exists({'url': nf_url[1:]}):
res.append(('L-function ' + self.label, '/L' + nf_url))
if self.embedding_label is None and len(self.conrey_orbit) * self.rel_dim > 50:
Expand Down

0 comments on commit f9575b3

Please sign in to comment.