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

35

36

37

38

39

r""" 

Catalog of permutation groups 

 

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

of groups implemented as permutation groups. 

 

TESTS:: 

 

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

False 

""" 

from __future__ import absolute_import 

 

# groups imported here will be available 

# via groups.permutation.<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 .permgroup_named import KleinFourGroup as KleinFour 

from .permgroup_named import QuaternionGroup as Quaternion 

from .permgroup_named import SymmetricGroup as Symmetric 

from .permgroup_named import AlternatingGroup as Alternating 

from .permgroup_named import CyclicPermutationGroup as Cyclic 

from .permgroup_named import DihedralGroup as Dihedral 

from .permgroup_named import DiCyclicGroup as DiCyclic 

from .permgroup_named import MathieuGroup as Mathieu 

from .permgroup_named import JankoGroup as Janko 

from .permgroup_named import SuzukiSporadicGroup as SuzukiSporadic 

from .permgroup_named import SuzukiGroup as Suzuki 

from .permgroup_named import (PGL, PSL, PSp,PSU,PGU,) 

from .permgroup_named import TransitiveGroup as Transitive 

from .cubegroup import CubeGroup as RubiksCube 

 

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

del absolute_import