passagemath-groups 10.5.6__cp311-cp311-macosx_13_0_x86_64.whl → 10.6.37__cp311-cp311-macosx_13_0_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/.dylibs/libgap.10.dylib +0 -0
- passagemath_groups/.dylibs/libgmp.10.dylib +0 -0
- passagemath_groups/.dylibs/libreadline.8.2.dylib +0 -0
- passagemath_groups/.dylibs/libz.1.3.1.dylib +0 -0
- passagemath_groups/__init__.py +3 -0
- passagemath_groups-10.6.37.dist-info/METADATA +113 -0
- passagemath_groups-10.6.37.dist-info/RECORD +40 -0
- {passagemath_groups-10.5.6.dist-info → passagemath_groups-10.6.37.dist-info}/WHEEL +2 -1
- passagemath_groups-10.6.37.dist-info/top_level.txt +3 -0
- sage/all__sagemath_groups.py +2 -1
- sage/geometry/palp_normal_form.cpython-311-darwin.so +0 -0
- sage/geometry/palp_normal_form.pyx +1 -1
- sage/groups/all__sagemath_groups.py +0 -4
- sage/groups/artin.py +331 -20
- sage/groups/braid.py +110 -58
- sage/groups/cubic_braid.py +1 -9
- sage/groups/finitely_presented_named.py +1 -1
- sage/groups/free_group.py +6 -4
- sage/groups/group_exp.py +10 -7
- sage/groups/semimonomial_transformations/semimonomial_transformation.cpython-311-darwin.so +0 -0
- passagemath_groups-10.5.6.dist-info/METADATA +0 -80
- passagemath_groups-10.5.6.dist-info/RECORD +0 -42
- passagemath_groups-10.5.6.dist-info/top_level.txt +0 -2
- passagemath_groups.dylibs/libgap.9.dylib +0 -0
- passagemath_groups.dylibs/libgmp.10.dylib +0 -0
- passagemath_groups.dylibs/libreadline.8.2.dylib +0 -0
- sage/groups/class_function.py +0 -1459
- sage/groups/conjugacy_classes.py +0 -526
- sage/groups/misc_gps/argument_groups.py +0 -1890
- sage/groups/misc_gps/imaginary_groups.py +0 -479
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: passagemath-groups
|
|
3
|
+
Version: 10.6.37
|
|
4
|
+
Summary: passagemath: Groups and Invariant Theory
|
|
5
|
+
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
|
+
Maintainer: Matthias Köppe, passagemath contributors
|
|
7
|
+
License-Expression: GPL-2.0-or-later
|
|
8
|
+
Project-URL: release notes, https://github.com/passagemath/passagemath/releases
|
|
9
|
+
Project-URL: repo (upstream), https://github.com/sagemath/sage
|
|
10
|
+
Project-URL: repo, https://github.com/passagemath/passagemath
|
|
11
|
+
Project-URL: documentation, https://passagemath.org/docs/latest
|
|
12
|
+
Project-URL: homepage (upstream), https://www.sagemath.org
|
|
13
|
+
Project-URL: discourse, https://passagemath.discourse.group
|
|
14
|
+
Project-URL: tracker (upstream), https://github.com/sagemath/sage/issues
|
|
15
|
+
Project-URL: tracker, https://github.com/passagemath/passagemath/issues
|
|
16
|
+
Classifier: Development Status :: 6 - Mature
|
|
17
|
+
Classifier: Intended Audience :: Education
|
|
18
|
+
Classifier: Intended Audience :: Science/Research
|
|
19
|
+
Classifier: Operating System :: POSIX
|
|
20
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
21
|
+
Classifier: Operating System :: MacOS :: MacOS X
|
|
22
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
24
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
25
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
26
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
27
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
28
|
+
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
30
|
+
Requires-Python: <3.15,>=3.10
|
|
31
|
+
Description-Content-Type: text/x-rst
|
|
32
|
+
Requires-Dist: passagemath-categories~=10.6.37.0
|
|
33
|
+
Requires-Dist: passagemath-gap~=10.6.37.0
|
|
34
|
+
Requires-Dist: passagemath-modules~=10.6.37.0
|
|
35
|
+
Provides-Extra: test
|
|
36
|
+
Requires-Dist: passagemath-repl; extra == "test"
|
|
37
|
+
Provides-Extra: coxeter3
|
|
38
|
+
Requires-Dist: passagemath-coxeter3; extra == "coxeter3"
|
|
39
|
+
Provides-Extra: gap
|
|
40
|
+
Provides-Extra: additive
|
|
41
|
+
Provides-Extra: affine
|
|
42
|
+
Provides-Extra: lie
|
|
43
|
+
Provides-Extra: matrix
|
|
44
|
+
Provides-Extra: permutation
|
|
45
|
+
Provides-Extra: presentation
|
|
46
|
+
Provides-Extra: representations
|
|
47
|
+
Requires-Dist: passagemath-combinat; extra == "representations"
|
|
48
|
+
Provides-Extra: semigroups
|
|
49
|
+
Requires-Dist: passagemath-combinat; extra == "semigroups"
|
|
50
|
+
Provides-Extra: standard
|
|
51
|
+
Requires-Dist: passagemath-groups[additive,matrix,representations,semigroups]; extra == "standard"
|
|
52
|
+
|
|
53
|
+
=====================================================================
|
|
54
|
+
passagemath: Groups and Invariant Theory
|
|
55
|
+
=====================================================================
|
|
56
|
+
|
|
57
|
+
`passagemath <https://github.com/passagemath/passagemath>`__ is open
|
|
58
|
+
source mathematical software in Python, released under the GNU General
|
|
59
|
+
Public Licence GPLv2+.
|
|
60
|
+
|
|
61
|
+
It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
|
|
62
|
+
developed 2005-2025 under the motto “Creating a Viable Open Source
|
|
63
|
+
Alternative to Magma, Maple, Mathematica, and MATLAB”.
|
|
64
|
+
|
|
65
|
+
The passagemath fork uses the motto "Creating a Free Passage Between the
|
|
66
|
+
Scientific Python Ecosystem and Mathematical Software Communities."
|
|
67
|
+
It was created in October 2024 with the following goals:
|
|
68
|
+
|
|
69
|
+
- providing modularized installation with pip,
|
|
70
|
+
- establishing first-class membership in the scientific Python
|
|
71
|
+
ecosystem,
|
|
72
|
+
- giving `clear attribution of upstream
|
|
73
|
+
projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
|
|
74
|
+
- providing independently usable Python interfaces to upstream
|
|
75
|
+
libraries,
|
|
76
|
+
- offering `platform portability and integration testing
|
|
77
|
+
services <https://github.com/passagemath/passagemath/issues/704>`__
|
|
78
|
+
to upstream projects,
|
|
79
|
+
- inviting collaborations with upstream projects,
|
|
80
|
+
- `building a professional, respectful, inclusive
|
|
81
|
+
community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
|
|
82
|
+
- `empowering Sage users to participate in the scientific Python ecosystem
|
|
83
|
+
<https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
|
|
84
|
+
- developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
|
|
85
|
+
serverless deployment with Javascript,
|
|
86
|
+
- developing a native Windows port.
|
|
87
|
+
|
|
88
|
+
`Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
|
|
89
|
+
available online.
|
|
90
|
+
|
|
91
|
+
passagemath attempts to support and provides binary wheels suitable for
|
|
92
|
+
all major Linux distributions and recent versions of macOS.
|
|
93
|
+
|
|
94
|
+
Binary wheels for native Windows (x86_64) are are available for a subset of
|
|
95
|
+
the passagemath distributions. Use of the full functionality of passagemath
|
|
96
|
+
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
97
|
+
or virtualization.
|
|
98
|
+
|
|
99
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
About this pip-installable distribution package
|
|
103
|
+
-----------------------------------------------
|
|
104
|
+
|
|
105
|
+
This pip-installable package ``passagemath-groups`` a distribution of a part of the Sage Library. It provides a small subset of the modules of the Sage library ("sagelib", ``passagemath-standard``) for computations with groups.
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
What is included
|
|
109
|
+
----------------
|
|
110
|
+
|
|
111
|
+
* `Groups <https://passagemath.org/docs/latest/html/en/reference/groups/index.html>`_
|
|
112
|
+
|
|
113
|
+
* see https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-groups/MANIFEST.in
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
passagemath_groups/__init__.py,sha256=5UZ7CmaoJ-o6uzVDPDwTWpJ_EciPneedoip6lmUDqGw,86
|
|
2
|
+
passagemath_groups/.dylibs/libreadline.8.2.dylib,sha256=LQX2FrTLsV6EwepMAOLc-uutjCUCbJfmdigOoBPlqco,279592
|
|
3
|
+
passagemath_groups/.dylibs/libz.1.3.1.dylib,sha256=AwHR-iBrik1SXKFkU4Trj1x4SLJAvL-uQW7UkgqkaQg,109840
|
|
4
|
+
passagemath_groups/.dylibs/libgap.10.dylib,sha256=eRVAQICY3VJj64rmeAXDT0l5zN1rEmSQ3UFvF0sNbH8,2487296
|
|
5
|
+
passagemath_groups/.dylibs/libgmp.10.dylib,sha256=OM1QDh7wQv2JU8-wfCJbbSlrQrjyZkkTMSQDUSjC-ec,488712
|
|
6
|
+
passagemath_groups-10.6.37.dist-info/RECORD,,
|
|
7
|
+
passagemath_groups-10.6.37.dist-info/WHEEL,sha256=wlOID7aumVp4ANpc7b_jjphnWw6TfTPEII6z8zgq67I,154
|
|
8
|
+
passagemath_groups-10.6.37.dist-info/top_level.txt,sha256=ys0qYvxqpJEW3rVwKsO59n9kNFe6uNUAiVduBEf6o7Y,25
|
|
9
|
+
passagemath_groups-10.6.37.dist-info/METADATA,sha256=UaCsO2TSYf_4I3gf9K8r5AK-_xiTP2AtXpsD6Mu2yR4,5177
|
|
10
|
+
sage/all__sagemath_groups.py,sha256=JOSY5oJmS67eaWpSs14SBcD7be6NMKH05esJQj8sNOI,525
|
|
11
|
+
sage/groups/finitely_presented.py,sha256=hLccjNjrj880fFeiLu9W7Z7Xz1HewuyJTVKNWrUsVMI,70042
|
|
12
|
+
sage/groups/fqf_orthogonal.py,sha256=8cx71JJorwsFoSPzVLBg1rI_dA9dfGeWDqA6GAuqRh8,20181
|
|
13
|
+
sage/groups/free_group.py,sha256=iMxfq5y8gA91i7XdpCmlL2N-5s2h_oYYohITmhMpVXo,29468
|
|
14
|
+
sage/groups/all__sagemath_groups.py,sha256=g4HxEDA-YDJcTYHqA5pGLBIy7gpzg-BEVb2Jn7mTJD8,1147
|
|
15
|
+
sage/groups/artin.py,sha256=CQHII1jKlBJZ_3GEyH-D22lS06prmIYcagTE7eg_RKc,41353
|
|
16
|
+
sage/groups/finitely_presented_named.py,sha256=dKB2M78fw5W7RTHCGy-VB_X9co9UbFcQQYSdBr945Rc,20597
|
|
17
|
+
sage/groups/all.py,sha256=ia6P1nJW_QxBEPMNKdT6ZE8v7J0z8qlMbX2uD3lBJU8,229
|
|
18
|
+
sage/groups/raag.py,sha256=WbkPRhwCopLc2PtJ_Zcy_QASzsHcsp84_fM1x_dUcWw,28842
|
|
19
|
+
sage/groups/cubic_braid.py,sha256=LEStrE9YiJAb5acsybhoQhth5fh-wbtn7uLjYyLoO1o,86974
|
|
20
|
+
sage/groups/group_semidirect_product.py,sha256=7XqgwRR8i-KAWQdRXE8uoNbYDG-mDTqFw2uyqhDGCwY,17910
|
|
21
|
+
sage/groups/cactus_group.py,sha256=O0FTBvGw8y3nRSR1aGPn5FdEv3jILG7QK_g_lZYdLPc,32895
|
|
22
|
+
sage/groups/braid.py,sha256=6LyEbj9KCOyR7v1HhHWYyd62XqGSHcIOQVQF_TuWCXk,140495
|
|
23
|
+
sage/groups/finitely_presented_catalog.py,sha256=Ylc_cx0Sv6eKH9J-n4xotqWK0Hc4pNrwZ3iRPe-gh1s,1251
|
|
24
|
+
sage/groups/group_exp.py,sha256=KjhnaTnqnNKvBmYZJEbUge2-RydGSkued1JFXSLzeoo,11190
|
|
25
|
+
sage/groups/kernel_subgroup.py,sha256=hZVsh5UYfq6MPxekXwlRuQyPuHq0Fk6SlNnN-5Yja6A,7706
|
|
26
|
+
sage/groups/lie_gps/catalog.py,sha256=O5ub0bmV3z8tvJEFjxhgjIz4Zff8rJksOe5VQp0py0o,363
|
|
27
|
+
sage/groups/lie_gps/all.py,sha256=-vXQHOTG46Zum7Q6k0kcJO43yJo09AIX-El8fzXA7eI,45
|
|
28
|
+
sage/groups/lie_gps/nilpotent_lie_group.py,sha256=6VEgyU0U4ERif179dC1JWBdxO1PM6ZJ4d7Rc7dLkZmY,32506
|
|
29
|
+
sage/groups/misc_gps/misc_groups.py,sha256=W2eH0XFqltL2-g7suj4vS8-klTYW4bTFmoWJ6ciR0-s,346
|
|
30
|
+
sage/groups/misc_gps/all.py,sha256=-vXQHOTG46Zum7Q6k0kcJO43yJo09AIX-El8fzXA7eI,45
|
|
31
|
+
sage/groups/misc_gps/misc_groups_catalog.py,sha256=TbpMPXGhwFpeOMlXdwdIGItBLV0XSvfN4oQRbKbMK9o,1627
|
|
32
|
+
sage/groups/abelian_gps/all.py,sha256=yQQEiBWy_vtucLyFb_q1OIqgiC_DIE9KUzNWpdGTa4A,906
|
|
33
|
+
sage/groups/semimonomial_transformations/semimonomial_transformation.cpython-311-darwin.so,sha256=3iaxNqO1c31QR_TG9lToEX7-Jkv3qOQZDJzJGTP3RQA,131976
|
|
34
|
+
sage/groups/semimonomial_transformations/semimonomial_transformation.pyx,sha256=9j9eS_uZYdCUQrTJDs4VhpO_7SeSzXdnzh0cACFNtkk,11298
|
|
35
|
+
sage/groups/semimonomial_transformations/all.py,sha256=-vXQHOTG46Zum7Q6k0kcJO43yJo09AIX-El8fzXA7eI,45
|
|
36
|
+
sage/groups/semimonomial_transformations/semimonomial_transformation_group.py,sha256=QflEYRK_oDUf8axx4kwcUR4aMOQNmE_faY1lzOdrAvQ,18312
|
|
37
|
+
sage/groups/semimonomial_transformations/semimonomial_transformation.pxd,sha256=wivg7LyXn_ZMrADRUmabPEYNitTRZCvs2htLN3E0v9g,297
|
|
38
|
+
sage/geometry/all__sagemath_groups.py,sha256=-vXQHOTG46Zum7Q6k0kcJO43yJo09AIX-El8fzXA7eI,45
|
|
39
|
+
sage/geometry/palp_normal_form.pyx,sha256=HfDpZHxffoxG2pxTrXO0ucRlEDZcrtzHBoZ0CoHm5lI,17498
|
|
40
|
+
sage/geometry/palp_normal_form.cpython-311-darwin.so,sha256=fw3CRV9lzQ5Te2FbQY-KFkSaGKZTqxa4ijXD0kivaBk,207872
|
sage/all__sagemath_groups.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# sage_setup: distribution = sagemath-groups
|
|
2
|
+
# delvewheel: patch
|
|
2
3
|
r"""
|
|
3
4
|
Top level of the distribution package sagemath-groups
|
|
4
5
|
|
|
@@ -9,8 +10,8 @@ This distribution makes the following feature available::
|
|
|
9
10
|
FeatureTestResult('sage.groups', True)
|
|
10
11
|
"""
|
|
11
12
|
|
|
12
|
-
from .all__sagemath_modules import *
|
|
13
13
|
from .all__sagemath_gap import *
|
|
14
|
+
from .all__sagemath_modules import *
|
|
14
15
|
|
|
15
16
|
try: # extra
|
|
16
17
|
from sage.all__sagemath_combinat import *
|
|
Binary file
|
|
@@ -198,7 +198,7 @@ def _palp_PM_max(Matrix_integer_dense PM, check=False):
|
|
|
198
198
|
else:
|
|
199
199
|
S[i] = i + 1
|
|
200
200
|
|
|
201
|
-
cdef int l,
|
|
201
|
+
cdef int l, cf, ccf, n_s_bar, d1, v0, vc, vj
|
|
202
202
|
cdef list l_r
|
|
203
203
|
|
|
204
204
|
# We determine the other rows of PM_max in turn by use of perms and
|
|
@@ -10,10 +10,6 @@ from sage.groups.all__sagemath_gap import *
|
|
|
10
10
|
|
|
11
11
|
from sage.misc.lazy_import import lazy_import
|
|
12
12
|
|
|
13
|
-
lazy_import('sage.groups.class_function', 'ClassFunction')
|
|
14
|
-
|
|
15
|
-
lazy_import('sage.groups.conjugacy_classes', ['ConjugacyClass', 'ConjugacyClassGAP'])
|
|
16
|
-
|
|
17
13
|
lazy_import('sage.groups.free_group', 'FreeGroup')
|
|
18
14
|
lazy_import('sage.groups.braid', 'BraidGroup')
|
|
19
15
|
lazy_import('sage.groups.cubic_braid', 'CubicBraidGroup')
|