-
-
Notifications
You must be signed in to change notification settings - Fork 528
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #31512: Implementation of the graded quasimodular forms ring
The goal of this ticket is to implement the graded ring of quasimodular forms. More precisely, the goal is to first implement a class named {{{QuasiModularFormsRing}}} with similar methods and features as the class {{{ModularFormsRing}}} (though see #31559). This ticket is part of #31560 URL: https://trac.sagemath.org/31512 Reported by: gh-DavidAyotte Ticket author(s): David Ayotte Reviewer(s): Vincent Delecroix
- Loading branch information
Showing
12 changed files
with
849 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
tarball=configure-VERSION.tar.gz | ||
sha1=858fdf8527f4fe99784aa086e22a87af78747c43 | ||
md5=f6caaef1d6736234579c63ec24d0e74c | ||
cksum=3658190224 | ||
sha1=51d4932b341ae2d45a9f290b01678ddd6b69588b | ||
md5=95b23763516ee31c92d2cd1b8471f3f3 | ||
cksum=3258904629 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
98255bc46252b0d90b8a3fdc3a83bc568163fb6e | ||
bb8fb816820e2f4f8704d152fd7f9df0525b9b2b |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../conf_sub.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Quasimodular Forms | ||
================== | ||
|
||
Module List | ||
----------- | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
sage/modular/quasimodform/ring | ||
sage/modular/quasimodform/element | ||
|
||
.. include:: ../footer.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,5 @@ | |
from .btquotients.all import * | ||
|
||
from .pollack_stevens.all import * | ||
|
||
from .quasimodform.all import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Quasimodular forms rings | ||
from .ring import QuasiModularForms |
Oops, something went wrong.