Skip to content

Commit

Permalink
Merge pull request #1465 from sehlen/mf_fixes
Browse files Browse the repository at this point in the history
Mf fixes
  • Loading branch information
AndrewVSutherland committed May 29, 2016
2 parents 8053216 + a3c016f commit a6758e2
Show file tree
Hide file tree
Showing 12 changed files with 397 additions and 344 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class WebModFormSpace(WebObject, CachedRepresentation):
_collection_name = 'webmodformspace'
_dimension_table_name = 'dimension_table'

def __init__(self, level=1, weight=12, character=1,cuspidal=True, new=True, prec=10, bitprec=53, update_from_db=True, update_hecke_orbits=True, **kwargs):
def __init__(self, level=1, weight=12, character=1,cuspidal=True, new=True, prec=0, bitprec=53, update_from_db=True, update_hecke_orbits=True, **kwargs):

# I added this reduction since otherwise there is a problem with
# caching the hecke orbits (since they have self as parent)
Expand Down Expand Up @@ -206,7 +206,7 @@ def __init__(self, level=1, weight=12, character=1,cuspidal=True, new=True, prec
WebInt('dimension_new_cusp_forms'),
WebBool('cuspidal', value=cuspidal),
WebBool('new', value=new),
WebInt('prec', value=int(prec)), #precision of q-expansions
#WebInt('prec', value=int(prec)), #precision of q-expansions -- removed, does not make much sense for the space here
WebSageObject('group'),
WebInt('sturm_bound'),
WebHeckeOrbits('hecke_orbits', level, weight,
Expand Down
Loading

0 comments on commit a6758e2

Please sign in to comment.