passagemath-groups 10.6.33__cp314-cp314-musllinux_1_2_x86_64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- passagemath_groups-10.6.33.dist-info/METADATA +113 -0
- passagemath_groups-10.6.33.dist-info/RECORD +35 -0
- passagemath_groups-10.6.33.dist-info/WHEEL +5 -0
- passagemath_groups-10.6.33.dist-info/top_level.txt +2 -0
- sage/all__sagemath_groups.py +21 -0
- sage/geometry/all__sagemath_groups.py +1 -0
- sage/geometry/palp_normal_form.cpython-314-x86_64-linux-musl.so +0 -0
- sage/geometry/palp_normal_form.pyx +401 -0
- sage/groups/abelian_gps/all.py +25 -0
- sage/groups/all.py +5 -0
- sage/groups/all__sagemath_groups.py +32 -0
- sage/groups/artin.py +1074 -0
- sage/groups/braid.py +3806 -0
- sage/groups/cactus_group.py +1001 -0
- sage/groups/cubic_braid.py +2052 -0
- sage/groups/finitely_presented.py +1896 -0
- sage/groups/finitely_presented_catalog.py +27 -0
- sage/groups/finitely_presented_named.py +592 -0
- sage/groups/fqf_orthogonal.py +579 -0
- sage/groups/free_group.py +944 -0
- sage/groups/group_exp.py +360 -0
- sage/groups/group_semidirect_product.py +504 -0
- sage/groups/kernel_subgroup.py +231 -0
- sage/groups/lie_gps/all.py +1 -0
- sage/groups/lie_gps/catalog.py +8 -0
- sage/groups/lie_gps/nilpotent_lie_group.py +945 -0
- sage/groups/misc_gps/all.py +1 -0
- sage/groups/misc_gps/misc_groups.py +11 -0
- sage/groups/misc_gps/misc_groups_catalog.py +33 -0
- sage/groups/raag.py +866 -0
- sage/groups/semimonomial_transformations/all.py +1 -0
- sage/groups/semimonomial_transformations/semimonomial_transformation.cpython-314-x86_64-linux-musl.so +0 -0
- sage/groups/semimonomial_transformations/semimonomial_transformation.pxd +9 -0
- sage/groups/semimonomial_transformations/semimonomial_transformation.pyx +346 -0
- sage/groups/semimonomial_transformations/semimonomial_transformation_group.py +512 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-groups
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-groups
|
|
2
|
+
r"""
|
|
3
|
+
Miscellaneous Groups
|
|
4
|
+
|
|
5
|
+
This is a collection of groups that may not fit into some of the other infinite families described elsewhere.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
# Implementation note:
|
|
9
|
+
# When adding a group here make an entry
|
|
10
|
+
# in the misc_groups_catalog.py module
|
|
11
|
+
# or a more closely-related catalog module
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-groups
|
|
2
|
+
r"""
|
|
3
|
+
Type ``groups.misc.<tab>`` to access examples
|
|
4
|
+
of various groups not listed elsewhere.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
# groups imported here will be available
|
|
8
|
+
# via groups.misc.<tab>
|
|
9
|
+
#
|
|
10
|
+
# Do not use this file for code
|
|
11
|
+
#
|
|
12
|
+
# If you import a new group, then add an
|
|
13
|
+
# entry to the list in the module-level
|
|
14
|
+
# docstring of groups/groups_catalog.py
|
|
15
|
+
|
|
16
|
+
from sage.misc.lazy_import import lazy_import
|
|
17
|
+
|
|
18
|
+
lazy_import('sage.groups.additive_abelian.additive_abelian_group', 'AdditiveAbelianGroup', as_='AdditiveAbelian')
|
|
19
|
+
lazy_import('sage.groups.abelian_gps.abelian_group', 'AbelianGroup', as_='MultiplicativeAbelian')
|
|
20
|
+
lazy_import('sage.rings.finite_rings.integer_mod_ring', 'IntegerModRing', as_='AdditiveCyclic')
|
|
21
|
+
lazy_import('sage.groups.free_group', 'FreeGroup', as_='Free')
|
|
22
|
+
lazy_import('sage.groups.artin', 'ArtinGroup', as_='Artin')
|
|
23
|
+
lazy_import('sage.groups.braid', 'BraidGroup', as_='Braid')
|
|
24
|
+
lazy_import('sage.groups.semimonomial_transformations.semimonomial_transformation_group', 'SemimonomialTransformationGroup', as_='SemimonomialTransformation')
|
|
25
|
+
lazy_import('sage.combinat.root_system.coxeter_group', 'CoxeterGroup')
|
|
26
|
+
lazy_import('sage.combinat.root_system.weyl_group', 'WeylGroup')
|
|
27
|
+
lazy_import('sage.combinat.colored_permutations', 'ShephardToddFamilyGroup', as_='ShephardToddFamily')
|
|
28
|
+
lazy_import('sage.groups.raag', 'RightAngledArtinGroup', as_='RightAngledArtin')
|
|
29
|
+
lazy_import('sage.combinat.root_system.reflection_group_real', 'ReflectionGroup')
|
|
30
|
+
lazy_import('sage.groups.cactus_group', 'CactusGroup', as_='Cactus')
|
|
31
|
+
lazy_import('sage.groups.cactus_group', 'PureCactusGroup', as_='PureCactus')
|
|
32
|
+
|
|
33
|
+
del lazy_import
|