Skip to content

Commit

Permalink
Add spectral parameter to gaga
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlowryduda committed May 24, 2024
1 parent 634d8fd commit dcab5d3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lmfdb/maass_forms/web_maassform.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ def parity_text(val):


def short_label(label):
# We shorten some labels from 5 components to 2 for simplicity (all of the Maass forms in the initial draft of the database had the same values for the second, third and fifth part of the label)
# We shorten some labels from 5 components to 2 for simplicity (all of the
# Maass forms in the initial draft of the database had the same values for
# the second, third and fifth part of the label)
pieces = label.split(".")
if len(pieces) == 5 and pieces[1] == '0' and pieces[2] == '1' and pieces[4] == '1':
return f"{pieces[0]}.{pieces[3]}"
Expand Down Expand Up @@ -204,6 +206,7 @@ def properties(self):
('Weight', prop_int_pretty(self.weight)),
('Character', self.character_label),
('Symmetry', self.symmetry_pretty),
(r"\(R\)", str(self.spectral_parameter)[:8]),
]
if self.conrey_index == 1:
props.append(('Fricke sign', self.fricke_pretty))
Expand Down

0 comments on commit dcab5d3

Please sign in to comment.