Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

""" 

Type ``groups.presentation.<tab>`` to access examples 

of groups implemented as finite presentations (quotients of 

free groups). 

 

TESTS:: 

 

sage: 'absolute_import' in dir(groups.presentation) 

False 

""" 

from __future__ import absolute_import 

 

# groups imported here will be available 

# via groups.presentation.<tab> 

# 

# Do not use this file for code 

# 

# If you import a new group, then add an 

# entry to the list in the module-level 

# docstring of groups/groups_catalog.py 

 

from .finitely_presented_named import DihedralPresentation as Dihedral 

from .finitely_presented_named import CyclicPresentation as Cyclic 

from .finitely_presented_named import DiCyclicPresentation as DiCyclic 

from .finitely_presented_named import FinitelyGeneratedAbelianPresentation as FGAbelian 

from .finitely_presented_named import FinitelyGeneratedHeisenbergPresentation as Heisenberg 

from .finitely_presented_named import KleinFourPresentation as KleinFour 

from .finitely_presented_named import SymmetricPresentation as Symmetric 

from .finitely_presented_named import QuaternionPresentation as Quaternion 

from .finitely_presented_named import AlternatingPresentation as Alternating 

from .finitely_presented_named import BinaryDihedralPresentation as BinaryDihedral 

 

# We don't want this to appear in tab completion 

del absolute_import