Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/src/sage/groups/finitely_presented_catalog.py
8814 views
1
"""
2
Type ``groups.presentation.<tab>`` to access examples
3
of groups implemented as finite presentations (quotients of
4
free groups).
5
"""
6
7
# groups imported here will be available
8
# via groups.presentation.<tab>
9
#
10
# Do not use this file for code
11
#
12
# If you import a new group, then add an
13
# entry to the list in the module-level
14
# docstring of groups/groups_catalog.py
15
16
from finitely_presented_named import DihedralPresentation as Dihedral
17
from finitely_presented_named import CyclicPresentation as Cyclic
18
from finitely_presented_named import DiCyclicPresentation as DiCyclic
19
from finitely_presented_named import FinitelyGeneratedAbelianPresentation as FGAbelian
20
from finitely_presented_named import KleinFourPresentation as KleinFour
21
from finitely_presented_named import SymmetricPresentation as Symmetric
22
from finitely_presented_named import QuaternionPresentation as Quaternion
23
from finitely_presented_named import AlternatingPresentation as Alternating
24
25