Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagesmc
Path: blob/master/src/sage/groups/matrix_gps/catalog.py
8815 views
1
r"""
2
Library of Interesting Groups
3
4
Type ``groups.matrix.<tab>`` to access examples
5
of groups implemented as permutation groups.
6
"""
7
8
# groups imported here will be available
9
# via groups.matrix.<tab>
10
#
11
# Do not use this file for code
12
#
13
# If you import a new group, then add an
14
# entry to the list in the module-level
15
# docstring of groups/groups_catalog.py
16
17
from all import GL, SL, Sp, SU, GU, SO, GO
18
from all import QuaternionMatrixGroupGF3 as QuaternionGF3
19
20
21