Path: blob/master/src/sage/groups/finitely_presented_catalog.py
8814 views
"""1Type ``groups.presentation.<tab>`` to access examples2of groups implemented as finite presentations (quotients of3free groups).4"""56# groups imported here will be available7# via groups.presentation.<tab>8#9# Do not use this file for code10#11# If you import a new group, then add an12# entry to the list in the module-level13# docstring of groups/groups_catalog.py1415from finitely_presented_named import DihedralPresentation as Dihedral16from finitely_presented_named import CyclicPresentation as Cyclic17from finitely_presented_named import DiCyclicPresentation as DiCyclic18from finitely_presented_named import FinitelyGeneratedAbelianPresentation as FGAbelian19from finitely_presented_named import KleinFourPresentation as KleinFour20from finitely_presented_named import SymmetricPresentation as Symmetric21from finitely_presented_named import QuaternionPresentation as Quaternion22from finitely_presented_named import AlternatingPresentation as Alternating232425