Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagelib
Path: blob/master/sage/modular/arithgroup/all.py
4056 views
1
# Note: the is_xxx functions are imported to here, but not from here up to sage.modular.all, so
2
# they are invisible to the user but easy to import all in one go by other code that needs them.
3
4
from arithgroup_generic import is_ArithmeticSubgroup
5
from congroup_generic import is_CongruenceSubgroup, CongruenceSubgroup_constructor as CongruenceSubgroup
6
from congroup_gammaH import GammaH_constructor as GammaH, is_GammaH
7
from congroup_gamma1 import Gamma1_constructor as Gamma1, is_Gamma1
8
from congroup_gamma0 import Gamma0_constructor as Gamma0, is_Gamma0
9
from congroup_gamma import Gamma_constructor as Gamma, is_Gamma
10
from congroup_sl2z import SL2Z, is_SL2Z
11
12
from arithgroup_perm import ArithmeticSubgroup_Permutation
13
14
from congroup_pyx import (degeneracy_coset_representatives_gamma0,
15
degeneracy_coset_representatives_gamma1)
16
17
from farey_symbol import Farey as FareySymbol
18
19
20