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

r""" 

Library of Interesting Groups 

 

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

of groups implemented as permutation groups. 

 

TESTS:: 

 

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

False 

""" 

from __future__ import absolute_import 

 

# groups imported here will be available 

# via groups.matrix.<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 .all import GL, SL, Sp, SU, GU, SO, GO 

from .all import QuaternionMatrixGroupGF3 as QuaternionGF3 

from sage.groups.matrix_gps.binary_dihedral import BinaryDihedralGroup as BinaryDihedral 

from sage.groups.matrix_gps.heisenberg import HeisenbergGroup as Heisenberg 

 

# We don't want this to appear tab completion 

del absolute_import