Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 3208ed9

Browse files
author
Frédéric Chapoton
committed
Merge branch 'public/ticket/14977' into 6.8.b5
2 parents 05875d5 + 372d8d4 commit 3208ed9

File tree

7 files changed

+1554
-1
lines changed

7 files changed

+1554
-1
lines changed

src/doc/en/reference/arithgroup/index.rst

+12
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,17 @@ the modular group `{\rm SL}_2(\ZZ)`.
1818
sage/modular/arithgroup/congroup_sl2z
1919
sage/modular/arithgroup/farey_symbol
2020
sage/modular/arithgroup/congroup
21+
22+
Arithmetic Subgroups of `{\rm SL}_2` over number fields
23+
=======================================================
24+
25+
This chapter describes the basic functionality for finite index subgroups of
26+
the modular group `{\rm SL}_2` over orders in number fields.
27+
28+
.. toctree::
29+
:maxdepth: 2
30+
31+
sage/rings/number_field/arithgroup_nf/arithgroup_nf_generic
32+
sage/rings/number_field/arithgroup_nf/arithgroup_nf_congruence
2133

2234
.. include:: ../footer.txt

src/doc/en/reference/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Number Theory, Algebraic Geometry
9595
* :doc:`L-Functions <lfunctions/index>`
9696
* :doc:`Schemes <schemes/index>`
9797
* :doc:`Elliptic, Plane, and Hyperelliptic Curves <plane_curves/index>`
98-
* :doc:`Arithmetic Subgroups of SL_2(Z) <arithgroup/index>`
98+
* :doc:`Arithmetic Subgroups of SL_2 <arithgroup/index>`
9999
* :doc:`General Hecke Algebras and Hecke Modules <hecke/index>`
100100
* :doc:`Modular Symbols <modsym/index>`
101101
* :doc:`Modular Forms <modfrm/index>`

src/sage/rings/number_field/all.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
from sage.misc.lazy_import import lazy_import
2+
lazy_import('sage.rings.number_field.arithgroup_nf', 'arithgroup_nf')
3+
14
from number_field import (NumberField, NumberFieldTower, CyclotomicField, QuadraticField,
25
is_fundamental_discriminant)
36
from number_field_element import NumberFieldElement
@@ -9,3 +12,4 @@
912
from totallyreal_rel import enumerate_totallyreal_fields_all, enumerate_totallyreal_fields_rel
1013

1114
from unit_group import UnitGroup
15+

src/sage/rings/number_field/arithgroup_nf/__init__.py

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
from arithgroup_nf_generic import ArithmeticSubgroup_NF_class
2+
from arithgroup_nf_congruence import HilbertModularGroup
3+

0 commit comments

Comments
 (0)