passagemath-gap 10.5.2__cp312-cp312-macosx_13_0_x86_64.whl → 10.5.24__cp312-cp312-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.
Files changed (59) hide show
  1. gap/gap +0 -0
  2. {passagemath_gap-10.5.2.dist-info → passagemath_gap-10.5.24.dist-info}/METADATA +13 -16
  3. passagemath_gap-10.5.24.dist-info/METADATA.bak +102 -0
  4. {passagemath_gap-10.5.2.dist-info → passagemath_gap-10.5.24.dist-info}/RECORD +58 -54
  5. {passagemath_gap-10.5.2.dist-info → passagemath_gap-10.5.24.dist-info}/WHEEL +1 -1
  6. passagemath_gap.dylibs/libgap.9.dylib +0 -0
  7. passagemath_gap.dylibs/libgmp.10.dylib +0 -0
  8. passagemath_gap.dylibs/libreadline.8.2.dylib +0 -0
  9. sage/all__sagemath_gap.py +5 -0
  10. sage/coding/codecan/autgroup_can_label.cpython-312-darwin.so +0 -0
  11. sage/coding/codecan/codecan.cpython-312-darwin.so +0 -0
  12. sage/combinat/enumeration_mod_permgroup.cpython-312-darwin.so +0 -0
  13. sage/combinat/root_system/reflection_group_c.cpython-312-darwin.so +0 -0
  14. sage/combinat/root_system/reflection_group_element.cpython-312-darwin.so +0 -0
  15. sage/combinat/root_system/reflection_group_element.pyx +2 -2
  16. sage/combinat/root_system/reflection_group_real.py +6 -6
  17. sage/groups/abelian_gps/abelian_aut.py +1 -0
  18. sage/groups/abelian_gps/abelian_group_gap.py +1 -0
  19. sage/groups/abelian_gps/abelian_group_morphism.py +1 -0
  20. sage/groups/all__sagemath_gap.py +7 -0
  21. sage/groups/class_function.py +1459 -0
  22. sage/groups/conjugacy_classes.py +527 -0
  23. sage/groups/libgap_group.py +2 -0
  24. sage/groups/libgap_mixin.py +13 -1
  25. sage/groups/libgap_morphism.py +6 -1
  26. sage/groups/libgap_wrapper.cpython-312-darwin.so +0 -0
  27. sage/groups/libgap_wrapper.pyx +1 -0
  28. sage/groups/matrix_gps/finitely_generated_gap.py +1 -0
  29. sage/groups/matrix_gps/group_element_gap.cpython-312-darwin.so +0 -0
  30. sage/groups/matrix_gps/group_element_gap.pyx +1 -0
  31. sage/groups/matrix_gps/isometries.py +1 -0
  32. sage/groups/matrix_gps/linear_gap.py +1 -0
  33. sage/groups/matrix_gps/matrix_group_gap.py +1 -0
  34. sage/groups/matrix_gps/named_group_gap.py +1 -0
  35. sage/groups/matrix_gps/orthogonal_gap.py +1 -0
  36. sage/groups/matrix_gps/symplectic_gap.py +1 -0
  37. sage/groups/perm_gps/constructor.py +1 -1
  38. sage/groups/perm_gps/cubegroup.py +5 -5
  39. sage/groups/perm_gps/partn_ref2/refinement_generic.cpython-312-darwin.so +0 -0
  40. sage/groups/perm_gps/partn_ref2/refinement_generic.pyx +1 -1
  41. sage/groups/perm_gps/permgroup.py +14 -3
  42. sage/groups/perm_gps/permgroup_element.cpython-312-darwin.so +0 -0
  43. sage/groups/perm_gps/permgroup_element.pyx +2 -1
  44. sage/groups/perm_gps/permgroup_named.py +4 -4
  45. sage/groups/perm_gps/symgp_conjugacy_class.py +3 -1
  46. sage/interfaces/gap.py +4 -4
  47. sage/libs/gap/element.cpython-312-darwin.so +0 -0
  48. sage/libs/gap/element.pyx +11 -13
  49. sage/libs/gap/gap_globals.py +31 -31
  50. sage/libs/gap/libgap.cpython-312-darwin.so +0 -0
  51. sage/libs/gap/libgap.pyx +5 -7
  52. sage/libs/gap/test_long.py +1 -1
  53. sage/libs/gap/util.cpython-312-darwin.so +0 -0
  54. sage/matrix/matrix_gap.cpython-312-darwin.so +0 -0
  55. sage/matrix/matrix_gap.pyx +1 -0
  56. sage/rings/species.py +2511 -0
  57. sage/rings/universal_cyclotomic_field.py +1 -1
  58. passagemath_gap.dylibs/libreadline.8.1.dylib +0 -0
  59. {passagemath_gap-10.5.2.dist-info → passagemath_gap-10.5.24.dist-info}/top_level.txt +0 -0
gap/gap CHANGED
Binary file
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: passagemath-gap
3
- Version: 10.5.2
3
+ Version: 10.5.24
4
4
  Summary: passagemath: Computational Group Theory with GAP
5
5
  Author-email: The Sage Developers <sage-support@googlegroups.com>
6
6
  Maintainer: Matthias Köppe, passagemath contributors
@@ -24,17 +24,15 @@ Classifier: Programming Language :: Python :: 3.9
24
24
  Classifier: Programming Language :: Python :: 3.10
25
25
  Classifier: Programming Language :: Python :: 3.11
26
26
  Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
27
28
  Classifier: Programming Language :: Python :: Implementation :: CPython
28
29
  Classifier: Topic :: Scientific/Engineering :: Mathematics
29
- Requires-Python: <3.13,>=3.9
30
+ Requires-Python: <3.14,>=3.9
30
31
  Description-Content-Type: text/x-rst
31
- Requires-Dist: cypari2>=2.1.1
32
- Requires-Dist: cysignals>=1.10.2
33
- Requires-Dist: cysignals<1.12,>=1.10.2
32
+ Requires-Dist: cysignals==1.12.0rc2
34
33
  Requires-Dist: memory_allocator
35
- Requires-Dist: passagemath-conf~=10.5.2.0
36
- Requires-Dist: passagemath-environment~=10.5.2.0
37
- Requires-Dist: passagemath-categories~=10.5.2.0
34
+ Requires-Dist: passagemath-environment~=10.5.24.0
35
+ Requires-Dist: passagemath-categories~=10.5.24.0
38
36
  Provides-Extra: test
39
37
  Requires-Dist: passagemath-repl; extra == "test"
40
38
 
@@ -59,12 +57,11 @@ See https://doc.sagemath.org/html/en/installation/index.html
59
57
  for general installation instructions.
60
58
 
61
59
 
62
- About this pip-installable source distribution
63
- ----------------------------------------------
60
+ About this pip-installable distribution
61
+ ---------------------------------------
64
62
 
65
- This pip-installable source distribution ``passagemath-gap`` is a small
66
- distribution that provides modules that depend on the GAP system, see
67
- https://www.gap-system.org
63
+ This pip-installable distribution ``passagemath-gap`` is a small
64
+ distribution that provides modules that depend on the `GAP system <https://www.gap-system.org>`_.
68
65
 
69
66
 
70
67
  What is included
@@ -74,9 +71,9 @@ What is included
74
71
 
75
72
  - `Pexpect interface to GAP <https://doc.sagemath.org/html/en/reference/interfaces/sage/interfaces/gap.html>`_
76
73
 
77
- - numerous modules with build-time dependencies on GAP, see https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-gap/MANIFEST.in
74
+ - numerous modules with build-time dependencies on GAP, see `MANIFEST <https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-gap/MANIFEST.in>`_
78
75
 
79
- - the binary wheels on PyPI ship a prebuilt copy of GAP 4.13.1
76
+ - the binary wheels on PyPI ship a prebuilt copy of GAP
80
77
 
81
78
 
82
79
  Examples
@@ -0,0 +1,102 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-gap
3
+ Version: 10.5.24
4
+ Summary: passagemath: Computational Group Theory with GAP
5
+ Author-email: The Sage Developers <sage-support@googlegroups.com>
6
+ Maintainer: Matthias Köppe, passagemath contributors
7
+ License: GNU General Public License (GPL) v2 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://doc.sagemath.org
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: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
20
+ Classifier: Operating System :: POSIX
21
+ Classifier: Operating System :: MacOS :: MacOS X
22
+ Classifier: Programming Language :: Python :: 3 :: Only
23
+ Classifier: Programming Language :: Python :: 3.9
24
+ Classifier: Programming Language :: Python :: 3.10
25
+ Classifier: Programming Language :: Python :: 3.11
26
+ Classifier: Programming Language :: Python :: 3.12
27
+ Classifier: Programming Language :: Python :: 3.13
28
+ Classifier: Programming Language :: Python :: Implementation :: CPython
29
+ Classifier: Topic :: Scientific/Engineering :: Mathematics
30
+ Requires-Python: <3.14,>=3.9
31
+ Description-Content-Type: text/x-rst
32
+ Requires-Dist: cysignals==1.12.0rc2
33
+ Requires-Dist: memory_allocator
34
+ Requires-Dist: passagemath-conf~=10.5.24.0
35
+ Requires-Dist: passagemath-environment~=10.5.24.0
36
+ Requires-Dist: passagemath-categories~=10.5.24.0
37
+ Provides-Extra: test
38
+ Requires-Dist: passagemath-repl; extra == "test"
39
+
40
+ =============================================================================
41
+ passagemath: Computational Group Theory with GAP
42
+ =============================================================================
43
+
44
+ About SageMath
45
+ --------------
46
+
47
+ "Creating a Viable Open Source Alternative to
48
+ Magma, Maple, Mathematica, and MATLAB"
49
+
50
+ Copyright (C) 2005-2024 The Sage Development Team
51
+
52
+ https://www.sagemath.org
53
+
54
+ SageMath fully supports all major Linux distributions, recent versions of
55
+ macOS, and Windows (Windows Subsystem for Linux).
56
+
57
+ See https://doc.sagemath.org/html/en/installation/index.html
58
+ for general installation instructions.
59
+
60
+
61
+ About this pip-installable distribution
62
+ ---------------------------------------
63
+
64
+ This pip-installable distribution ``passagemath-gap`` is a small
65
+ distribution that provides modules that depend on the `GAP system <https://www.gap-system.org>`_.
66
+
67
+
68
+ What is included
69
+ ----------------
70
+
71
+ - `Cython interface to libgap <https://doc.sagemath.org/html/en/reference/libs/sage/libs/gap/libgap.html>`_
72
+
73
+ - `Pexpect interface to GAP <https://doc.sagemath.org/html/en/reference/interfaces/sage/interfaces/gap.html>`_
74
+
75
+ - numerous modules with build-time dependencies on GAP, see `MANIFEST <https://github.com/passagemath/passagemath/blob/main/pkgs/sagemath-gap/MANIFEST.in>`_
76
+
77
+ - the binary wheels on PyPI ship a prebuilt copy of GAP
78
+
79
+
80
+ Examples
81
+ --------
82
+
83
+ A quick way to try it out interactively::
84
+
85
+ $ pipx run --pip-args="--prefer-binary" --spec "passagemath-gap[test]" IPython
86
+
87
+ In [1]: from sage.all__sagemath_modules import *
88
+
89
+ In [2]: from sage.all__sagemath_gap import *
90
+
91
+ In [3]: G = libgap.eval("Group([(1,2,3), (1,2)(3,4), (1,7)])")
92
+
93
+ In [4]: CG = G.ConjugacyClasses()
94
+
95
+ In [5]: gamma = CG[2]
96
+
97
+ In [6]: g = gamma.Representative()
98
+
99
+ In [7]: CG; gamma; g
100
+ [ ()^G, (4,7)^G, (3,4,7)^G, (2,3)(4,7)^G, (2,3,4,7)^G, (1,2)(3,4,7)^G, (1,2,3,4,7)^G ]
101
+ (3,4,7)^G
102
+ (3,4,7)
@@ -1,11 +1,16 @@
1
- passagemath_gap.dylibs/libreadline.8.1.dylib,sha256=OMG0YPRze3MpqyqZCjgeQ0UGbqIabnvS3B4vd5NJDaY,398640
2
- passagemath_gap.dylibs/libgap.9.dylib,sha256=bUB6k2jyP7FlzNvdiVpRpUgGV9pH89LPRzgH3_fXTVA,2557568
3
- passagemath_gap.dylibs/libgmp.10.dylib,sha256=JMgROeuO6fgSaLCNwX19Uc0V1lrAxH8Q_ik5WdrJ1LE,724176
1
+ passagemath_gap-10.5.24.dist-info/RECORD,,
2
+ passagemath_gap-10.5.24.dist-info/METADATA.bak,sha256=h1UyCSVt1dyfrTHr9Ft6EaLVHgR4fWVlWKpL-E6Apoo,3840
3
+ passagemath_gap-10.5.24.dist-info/WHEEL,sha256=y9RD3v-4MwqfDGyylBknRyiKtwoM4F3vj02rRf_o1yU,110
4
+ passagemath_gap-10.5.24.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
5
+ passagemath_gap-10.5.24.dist-info/METADATA,sha256=EIBNN9AkAshjhJqxZzkzg_LS7Ve_VC-8tafUunsU870,3797
6
+ passagemath_gap.dylibs/libreadline.8.2.dylib,sha256=aF6MAE2BzdUogSL0mAAlzN6n4FycbnkElfN5oPo0Kns,296192
7
+ passagemath_gap.dylibs/libgap.9.dylib,sha256=y94lp82OR6HXdtDNoA27KuMjAtjb1deziBLDDKp6sJo,2557568
8
+ passagemath_gap.dylibs/libgmp.10.dylib,sha256=3rKNRUvL6Jj_FgRmSwqcohWxoVTquNFWRzbrrK692aE,580928
4
9
  gap/CITATION,sha256=MnPKDTe9tpRqVXgjpptKgFLPWoV7Ottj9MHEMJgvd8E,2106
5
10
  gap/LICENSE,sha256=gXf5dRMhNSbfLPYYTY_5hsZ1r7UU1OaKQEAQUhuIBkM,18092
6
11
  gap/INSTALL.md,sha256=6mu89qCZoDyakSrB6NS8Y9ch59Cnx22jQQWgOtQqIRM,26518
7
12
  gap/README.md,sha256=uQAfvPpWvNmFGCO0p_fcJnjz8hU0KG0O3fgWM1ZSBZo,6555
8
- gap/gap,sha256=T3ggGkovbSLKY1ZwGsay_nKiASi4AM2cVDBzJdv9cjQ,52016
13
+ gap/gap,sha256=_EGai7l3D0_KXLs0AGf0FZqxjCglv2vIpylBSEXjwvo,52016
9
14
  gap/CONTRIBUTING.md,sha256=ETeQXP8shqpBa8kjFQ-P-PatuJ09OX3J4fEI9hbGTAk,9576
10
15
  gap/COPYRIGHT,sha256=xS8Dkc5sFfgcrgVXoN6KtpNtDKLV4VAXnbcQEsbpwWw,2854
11
16
  gap/sysinfo.gap,sha256=LeUGR1KvmUA_I-H8HM8l4r37WGHHe9Vi9PFByEGpltg,2580
@@ -10478,110 +10483,109 @@ gap/pkg/ctbllib/doc2/ctblcons18.png,sha256=8X6PO82PlIlmJryxn5ux_44UqVZz0djE5QrZQ
10478
10483
  gap/pkg/ctbllib/doc2/ctocenex2.png,sha256=k6VZQ4yBdR4L-C6hY7fWAP3B2XMm4RSEnWhFx66WweU,1504
10479
10484
  gap/pkg/ctbllib/doc2/chapInd_mj.html,sha256=dmd_hWTMRRBWQg2qDj3bTSsBzUv_gqg73HwtGFNnv0o,2613
10480
10485
  gap/pkg/ctbllib/doc2/chooser.html,sha256=ZBwBn_4DujhjpNNtb5qCsU4zHcH6hiXQcDOnK2AIpnw,3886
10481
- sage/all__sagemath_gap.py,sha256=xUTzfFlB_abcGQ4Hx18NtVgzOvtq5kwRJPK4Gf_vrIA,457
10486
+ sage/all__sagemath_gap.py,sha256=RMuy5dc4uE3eazyDuyWx8iiZnxlbpuU4Kn1S-_RgNgA,593
10482
10487
  sage/combinat/enumeration_mod_permgroup.pyx,sha256=ZLeehu3ACXydKZQs-tzo5lgcodJY09u3jEOIT4odR84,9990
10483
10488
  sage/combinat/all__sagemath_gap.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10484
10489
  sage/combinat/enumeration_mod_permgroup.pxd,sha256=1MzkJhWyxuKGTb8Q_V0qr1Zlm8S8tuYbFqvXCQLfMug,587
10485
- sage/combinat/enumeration_mod_permgroup.cpython-312-darwin.so,sha256=m79BGAIplam8_JjSd49ATv4n2-omq6vvi4bkn-zCIUQ,142896
10486
- sage/combinat/root_system/reflection_group_element.pyx,sha256=HVsFT8G3uKouaeHHJ9ihj-6TtrqsVK162y58RV8A44Y,45425
10490
+ sage/combinat/enumeration_mod_permgroup.cpython-312-darwin.so,sha256=1hafRjUMxlvnG1O1GgufUaGD80lKhI67X4wbKKDXiWo,142896
10491
+ sage/combinat/root_system/reflection_group_element.pyx,sha256=NVKjj24WPnEeUKD13q8w_ujw5lyL7oOodxwp5Q1JgVA,45463
10487
10492
  sage/combinat/root_system/weyl_group.py,sha256=aqd_uGB-n7aBTRLPG64anTLBhi8rZsPWUTswSKt0A14,46106
10488
10493
  sage/combinat/root_system/reflection_group_complex.py,sha256=Dnx1uwa_BbihXX9DlO6KdaF6JMC9fx7pgmQpl9LKgo4,84377
10489
10494
  sage/combinat/root_system/all__sagemath_gap.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10490
10495
  sage/combinat/root_system/reflection_group_c.pyx,sha256=R17v0qbx8GENTjDxRM-Z6MN-aCXHfrTva0b7CZHlWFA,21814
10491
- sage/combinat/root_system/reflection_group_element.cpython-312-darwin.so,sha256=9HzJ494emOOC7AWiiipXHON1Jv0OyCNu-keQownelL0,317952
10492
- sage/combinat/root_system/reflection_group_c.cpython-312-darwin.so,sha256=NNMSt7HVTEF9ikI0lJk9iyLxS8TlveUQYgIStqsimQ0,239264
10496
+ sage/combinat/root_system/reflection_group_element.cpython-312-darwin.so,sha256=psFYWZcFJQ-oRGsde_E2PIKuO-es4BhXHhM-qmpQnys,317952
10497
+ sage/combinat/root_system/reflection_group_c.cpython-312-darwin.so,sha256=9PAmvne_r47iYS4wLhMxPiNq9Pe4u-vbn1SUVY66Xz0,239264
10493
10498
  sage/combinat/root_system/reflection_group_element.pxd,sha256=1RVx6VLkhNGSC0iv_vWePsQXWeEqjjz8rQ4F-k0Mm8M,552
10494
- sage/combinat/root_system/reflection_group_real.py,sha256=U_kSZRMocXEf6UbdmT8P4mh_ilSFkLdEDRPkCCAZwvI,32267
10499
+ sage/combinat/root_system/reflection_group_real.py,sha256=R4SL8rPU4Shi6cjgtlnHDDxhk1kBzF3pezJqwlf8gsw,32274
10495
10500
  sage/ext_data/all__sagemath_gap.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10496
10501
  sage/ext_data/gap/console.g,sha256=Zs2nE3cHhQoV8mFPp6ZjsB_kmZV7lf5Op_-sTIRyQFw,229
10497
10502
  sage/ext_data/gap/sage.g,sha256=g38h92MCy3q3Wq6uTfQNzftx0pvKs7W5cbLrDQXStnw,4533
10498
10503
  sage/ext_data/gap/joyner/hurwitz_crv_rr_sp.gap,sha256=7KiCCji_Z2nCxceABiCiZ2mTk9pH2Uv0msAYvV8vsAw,9286
10499
10504
  sage/ext_data/gap/joyner/modular_crv_rr_sp.gap,sha256=WC_XUFN8Bh-rUin5BA_UlZDLtxR8qJRWAKnzSeSYz58,7030
10500
- sage/groups/libgap_mixin.py,sha256=ccqrHr0cI641KOCUI3CTaoICJYUJRTje3gkzRXDekOs,31021
10501
- sage/groups/libgap_wrapper.pyx,sha256=_39YEG89i7_Vh7C_r8xhaIQSZ7ORQ8uWY1ecta8nxBE,23465
10502
- sage/groups/libgap_morphism.py,sha256=HV_KfW2r8KSoazfKuqITC7MIbjFWrsbyEzCDbboOqKk,27702
10503
- sage/groups/all__sagemath_gap.py,sha256=w4CEMCUySSoetWvIx4GKzoLEofGzfH7476CW70Ci3h4,138
10505
+ sage/groups/libgap_mixin.py,sha256=xwgYFNYA1OuPGihXJeT0hPH1sjsT446KC_4yQZv-j-s,31759
10506
+ sage/groups/class_function.py,sha256=-czKiHU_PZfW2fc-itBBoOEdxX-9e4vAZC_hgjeneNM,48648
10507
+ sage/groups/libgap_wrapper.pyx,sha256=tDgmlzl-EGycsI3k7zZ6OlqFkfqihQrqPkdGShm6pAM,23501
10508
+ sage/groups/libgap_morphism.py,sha256=aNIDzJUqYRQBAXfv3V0sOidbiicl0-4A6h_oxtoLU_w,27860
10509
+ sage/groups/all__sagemath_gap.py,sha256=0jMNQaDJCB91-B5Vb42YjN2ZS0J92UMejcEq9B_ALuM,348
10504
10510
  sage/groups/galois_group_perm.py,sha256=U8o3hNZYw1iVR2jPgOtjsre8T9VoUqXtLE7on-VmKFg,7668
10505
- sage/groups/libgap_group.py,sha256=rCOmdTpmvW1cGW9ljctnhW4nqBKVcEQ4Ard7krbk4Bg,2036
10506
- sage/groups/libgap_wrapper.cpython-312-darwin.so,sha256=Q_qUB8JTFAHLkI9ti8NhhRh6zgGfKL0xFzQLbx8zbdM,281280
10511
+ sage/groups/libgap_group.py,sha256=wJ-4oBZn59shN-b23mlfH96QE3wAHNSQg1X_QAICutM,2108
10512
+ sage/groups/libgap_wrapper.cpython-312-darwin.so,sha256=orFXT_6imr6GUdt0pM1leKMsphRc-gjzKlPllKTHGbc,281280
10507
10513
  sage/groups/libgap_wrapper.pxd,sha256=3GN4VL7SbZGZR4Lx_hyv_drcBH32XnO2VvWc2yqB3k8,294
10508
- sage/groups/perm_gps/permgroup_element.cpython-312-darwin.so,sha256=WhdK7s5h63pAZzlMyknW3zLFu7QHM_ZGBSQ52WSWRtQ,431104
10509
- sage/groups/perm_gps/symgp_conjugacy_class.py,sha256=rma7ZS4q-PFuzX-fGxUB9y9f3KdGjB_eBVEn_011-KU,12219
10514
+ sage/groups/conjugacy_classes.py,sha256=IlA9emEBpGi8oremSwjeKUkSSreqUE-XiqlZHaWgxis,17014
10515
+ sage/groups/perm_gps/permgroup_element.cpython-312-darwin.so,sha256=-El7J58nFpqH85b-73mAmkv9LQehUFFJyomJUT07bCU,431104
10516
+ sage/groups/perm_gps/symgp_conjugacy_class.py,sha256=zxgZ8ctHn0hWYyAYMMG_9T2EtmSWcNMj09xGViXpAMw,12272
10510
10517
  sage/groups/perm_gps/permgroup_morphism.py,sha256=MOk3UQZyu9zuIbZI6cNx_9njP50Q6dWmXzFG2OHmU8k,11589
10511
- sage/groups/perm_gps/permgroup.py,sha256=eX30IXNJZGzj5esn4kuFzz_5ay_UMtNjFtA3_CFB1FI,198385
10512
- sage/groups/perm_gps/cubegroup.py,sha256=SvloiZ3bLyAZ32eNTvqKker6Wkd25Vj9ntSxJNGUUzc,59014
10513
- sage/groups/perm_gps/constructor.py,sha256=UQZb0xIMpGO4c5z0JzGnGtkq07ENY5ZKjlCJdY5elIA,9055
10518
+ sage/groups/perm_gps/permgroup.py,sha256=O0MCoYfHUfNqh2RyPgb4p9JnGHwnvKgfkRhdUlSThcA,198883
10519
+ sage/groups/perm_gps/cubegroup.py,sha256=JhDtdlR1X5vMeNpeZ7JkUFjycA23mETDqIsPhdZXhY0,59382
10520
+ sage/groups/perm_gps/constructor.py,sha256=DIPRBoKlEm_8V66EBaVydJknCWw83ejMwvZd2oBrUSw,9055
10514
10521
  sage/groups/perm_gps/permutation_groups_catalog.py,sha256=nBJCF8Ci2a4IX7fw3gabqzpOJGdRZyO0I4A2WRjtEY8,1272
10515
- sage/groups/perm_gps/permgroup_named.py,sha256=PyCb7883fYXB1wuD0aW58V_XMVpULFCt-4BwHkf_81U,119650
10522
+ sage/groups/perm_gps/permgroup_named.py,sha256=u46E5qd97WjPB7pI_TAE7flElNX2cDho3Rz2sg_lsmY,119818
10516
10523
  sage/groups/perm_gps/all.py,sha256=iDGHouhuDklSyispK95tIYUecqKrjPgjZeexTOJ_If0,1428
10517
10524
  sage/groups/perm_gps/permgroup_element.pxd,sha256=vKhO951GtbTnqDTGEeOndLsvCni3KSx1QBRKInC-xAc,1347
10518
- sage/groups/perm_gps/permgroup_element.pyx,sha256=ZEIxQVOgbWJe0k9TjBvS6rtRFrO7k6QUt117fKcG3BY,69737
10525
+ sage/groups/perm_gps/permgroup_element.pyx,sha256=TAvbnXevK8_o84Z8GeYSkiH5m3K9qsnracP4-9zJOrM,69856
10519
10526
  sage/groups/perm_gps/partn_ref/all__sagemath_gap.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10520
- sage/groups/perm_gps/partn_ref2/refinement_generic.pyx,sha256=_ZLP20PsGJRE-1EdEADI8Bp-XuHw88uvDGyCQ5CYyCc,38134
10527
+ sage/groups/perm_gps/partn_ref2/refinement_generic.pyx,sha256=NyOI48ggOkTSfNz56lUx3Z1eK65UZZRNXV9ku98u9fg,38135
10521
10528
  sage/groups/perm_gps/partn_ref2/refinement_generic.h,sha256=38tsIbqXuLaEiAPSW-obee7Nx1ztC-dAchuPir1jHtI,1112
10522
10529
  sage/groups/perm_gps/partn_ref2/all.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10523
- sage/groups/perm_gps/partn_ref2/refinement_generic.cpython-312-darwin.so,sha256=uea0kETnmTNOrdB3pEBEqgjMM2ylz41zPdA6brTcCOA,198928
10530
+ sage/groups/perm_gps/partn_ref2/refinement_generic.cpython-312-darwin.so,sha256=EqnJqzDlPTn6rXAwkwmY2hL29-k4MR9Vks14Zlyj_9Q,198816
10524
10531
  sage/groups/perm_gps/partn_ref2/refinement_generic.pxd,sha256=PBlntyHTRNvKW00ec728ay4w2Z0uAXskzrHqwbm7wC0,3836
10525
- sage/groups/abelian_gps/abelian_aut.py,sha256=eQ3Q-xv4rsPn8B3jDUMYDxRGZlF6p5r2oU6qczW0oTE,18657
10526
- sage/groups/abelian_gps/abelian_group_gap.py,sha256=f4kZylvztnfP9ALp0kSSzbhIovPoC8cBpSoVcnTc0wo,33618
10527
- sage/groups/abelian_gps/abelian_group_morphism.py,sha256=LJl1RCScUjUTRz8zEa2yNjx3-ebk3Vd3wVHAmEOHbx4,8629
10532
+ sage/groups/abelian_gps/abelian_aut.py,sha256=sbxjUHrUsX-dTidjcaP8ixghg0YnQuVLEEj2slJgGMA,18692
10533
+ sage/groups/abelian_gps/abelian_group_gap.py,sha256=PKlvKNW5d75FybOysyaaepXqnfR4vwB4l0S2EPirBmM,33653
10534
+ sage/groups/abelian_gps/abelian_group_morphism.py,sha256=G3MNt9F7iOPbcd-yfHg6DnvezRV2910NoCHeeqHeL8A,8664
10528
10535
  sage/groups/abelian_gps/all__sagemath_gap.py,sha256=ouqkntfIYCrgSyLg4UODAVrKGj3mJRn17a6gsKaFNJM,201
10529
- sage/groups/matrix_gps/orthogonal_gap.py,sha256=c5bJHEvAyc6TiGHs4Zebf6-ZgC-6ASG0pS9GDPV49Ic,4293
10536
+ sage/groups/matrix_gps/orthogonal_gap.py,sha256=gdu4dopyxM7Q6zdGI-sczmbz31pC96Dbu4WWr0OX8f0,4328
10530
10537
  sage/groups/matrix_gps/unitary_gap.py,sha256=aIwWF1LmpX1PXL1LDMV-hLHtwUJrXFrkC1pfoZYZjOE,2296
10531
10538
  sage/groups/matrix_gps/binary_dihedral.py,sha256=ohXLkTpOGdH7cYsME2MOHFGoqjhVxLB-a0Zt0sMojxY,3939
10532
- sage/groups/matrix_gps/isometries.py,sha256=g-no1i33ksi1kFkqc3T2f33AY8b6pyWKdE-56q6L1Dk,15786
10533
- sage/groups/matrix_gps/finitely_generated_gap.py,sha256=tX7qtM0nTHPOaMygvpYRu-1R9oTTNiDmHEP-XSzvlhM,39302
10534
- sage/groups/matrix_gps/linear_gap.py,sha256=ag9Hue7pK1EvIQw5V8Wn6mzGSVRJ9PSzKrEQY_ipT94,754
10535
- sage/groups/matrix_gps/named_group_gap.py,sha256=3b69iPSAwBruwmAjwno-OFoumJKpge9s1fOj3GCUrm4,2119
10539
+ sage/groups/matrix_gps/isometries.py,sha256=1jm8St4iPIm_r8tYmoRtafclTF2cVOkAYrZoxohrrSE,15821
10540
+ sage/groups/matrix_gps/finitely_generated_gap.py,sha256=KUP5YMIp_43DOLA9y--zaB0sGrKjHiwas7UvvnPDX30,39337
10541
+ sage/groups/matrix_gps/linear_gap.py,sha256=voHn-cH6SHAhIzLFTmg7yDr1wjkVvCoGl8_8CIJculg,789
10542
+ sage/groups/matrix_gps/named_group_gap.py,sha256=qHQY-xRmkt_gjLceQpn2GqRih4gl9VgAr5V442WaJvs,2154
10536
10543
  sage/groups/matrix_gps/group_element_gap.pxd,sha256=LN2A5zqKkzMBfC8gu7bQ-JrVfuHvt_-CntE2m8mb4A8,220
10537
- sage/groups/matrix_gps/group_element_gap.pyx,sha256=6LN7Pd0OAVx2fd-xlM2iMwxO22-8keAxJku51RwjNBQ,13247
10544
+ sage/groups/matrix_gps/group_element_gap.pyx,sha256=l_1EdHz1xMaTmaB3pfBB5ai3SQC9S96-xOn0yztiE9E,13282
10538
10545
  sage/groups/matrix_gps/heisenberg.py,sha256=QpHMsIuUbLvvExGn0OPxp-2nGFuKUBsVP4wAne8nBjg,8274
10539
10546
  sage/groups/matrix_gps/all__sagemath_gap.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10540
- sage/groups/matrix_gps/symplectic_gap.py,sha256=bkfwnStQCqGGyufBfih3R1YnPWswDEtvZRZthBkifcs,2176
10541
- sage/groups/matrix_gps/matrix_group_gap.py,sha256=ZCYTl3ox-kBsG65AElw6kdD0eQk6wZKJP2Dch6YywZI,11932
10542
- sage/groups/matrix_gps/group_element_gap.cpython-312-darwin.so,sha256=B1k41W3600DL-TfeiqRmthDkEz7KHfYLYVKuqx_3ljY,195056
10547
+ sage/groups/matrix_gps/symplectic_gap.py,sha256=gLEtYNUc51c_0ISx0xvPVjfFs2EnOCPv3vNp2ApSbWU,2211
10548
+ sage/groups/matrix_gps/matrix_group_gap.py,sha256=wVB-KRnsZ3RwodwotZgbSsR-z3bpnnn9Uk6iFpLkXDQ,11967
10549
+ sage/groups/matrix_gps/group_element_gap.cpython-312-darwin.so,sha256=8WU8DwIGGnUzMgl4rMPvO7nOFTH4tOmPDwrlJmO5axg,195056
10543
10550
  sage/libs/all__sagemath_gap.py,sha256=NFyfEM93dqg3CThm18Ut_I2rNfz_8fH1Bhhm0BSFaV8,150
10544
10551
  sage/libs/gap/util.pxd,sha256=TYfF5_1GcP6A_Lf7oVJR2H_kyOvRb95pnFtmWEeI2Lg,1856
10545
10552
  sage/libs/gap/gap_functions.py,sha256=xQy4fhcX_mdxUo3rJKsNRWY7nd9kG5fKnG60FSSzCXA,30224
10546
- sage/libs/gap/element.pyx,sha256=_YFZSlHiGu2SvQWk71lwtRIeeAKqaAMf3oJTwOA1sxA,96575
10553
+ sage/libs/gap/element.pyx,sha256=WVis678k5VMkHaUmd4emmLew0HiSPf65IfJtmXStuqw,97307
10547
10554
  sage/libs/gap/saved_workspace.py,sha256=xEFrQ2_I_H2aDKnG-jdsZLeKrTFMOqCroOUc1d5iprQ,2331
10548
- sage/libs/gap/element.cpython-312-darwin.so,sha256=3q1wpaa1VP_XxtTS5QG4IXAAcjiQc11T7QH5qtEJY8E,514400
10555
+ sage/libs/gap/element.cpython-312-darwin.so,sha256=Ms2WfRVnY7bbt5NXj0S8vJmxt8dTDGmPbP1Mpv30K1w,514400
10549
10556
  sage/libs/gap/assigned_names.py,sha256=OQzq_AojG4_X8DBi16bpeicp_3us9UsLtvVJD_Mi4Fw,3578
10550
10557
  sage/libs/gap/gap_includes.pxd,sha256=OS8K8ntpCYE8Pt94vojgoXKLgin2UWykUR0NauhYQ8I,4606
10551
- sage/libs/gap/libgap.cpython-312-darwin.so,sha256=a-JXURpsTj6YBR_dgcjfwvfyK4mPFun9OK9VNsM15mE,230672
10558
+ sage/libs/gap/libgap.cpython-312-darwin.so,sha256=Tiqm_kyDTwhgPKMUImpCKOkuUd-K2JQk7nW8OKlKl5w,230688
10552
10559
  sage/libs/gap/all.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10553
10560
  sage/libs/gap/test.py,sha256=u9dmPL-NFNYcump22uL_I3goylGOw6rK0-Ctk9f1gb4,671
10554
- sage/libs/gap/util.cpython-312-darwin.so,sha256=TpfnuLa9uZDCxnGe21TPGYW_5xZyq6dZI-LCDqVktdI,151760
10561
+ sage/libs/gap/util.cpython-312-darwin.so,sha256=c64jMfRqYfKjDtiGSmJf5Hz8P-BguKRzLlEVL9RUrAI,151760
10555
10562
  sage/libs/gap/operations.py,sha256=pjGCr4wukT0F3lIbBnmZ3XJO4ufIKeIslxWjDFgVWoc,3616
10556
10563
  sage/libs/gap/context_managers.py,sha256=w6MOfJFgtijEDT77aJJ5bFfHV5wbPVN42BOW04KBL1A,3319
10557
10564
  sage/libs/gap/sage.gaprc,sha256=thmhuOlUaHRTrCUWeaCT-VLTE2AKuN1_c5wETdjXBGc,1304
10558
10565
  sage/libs/gap/element.pxd,sha256=4_-Te0nkerQk1MCI4qfeALfUWN1Jn1QbEpGQe2vrGn4,3297
10559
10566
  sage/libs/gap/all_documented_functions.py,sha256=79ehQ66NrZFT3Oc1ZCYA4f-pxYorYV2YaZI0nTvz7Ss,612
10560
- sage/libs/gap/test_long.py,sha256=ao1k5GIBaDyfl9eDWi-RFZee0LBktjmWDu95ZLu6pt8,1276
10561
- sage/libs/gap/gap_globals.py,sha256=6yGAR-rOjSCuZQVt3cCs68loDVM1UIOav1t9YEIvYK0,1307
10562
- sage/libs/gap/libgap.pyx,sha256=TN8M3uYWHvPMRRBDvnn0Ugl7UxXFzMxktklPWO5UMYM,23354
10567
+ sage/libs/gap/test_long.py,sha256=Y4874pVnQUR6GPD2IJHP68YKblWeO6m2ZvW11sPJA3w,1282
10568
+ sage/libs/gap/gap_globals.py,sha256=klLCm09wJmEXnZ_V5pHKn7OOwxREIILcYmPeglHsKTw,1360
10569
+ sage/libs/gap/libgap.pyx,sha256=SWQqkcSSFvUkv5CcOIQTPTO6O9gUIhCxRCk2mEJqiAk,23664
10563
10570
  sage/libs/gap/util.pyx,sha256=xDs-zKqFLr5UqafL29yS7yco1h5Q81geESFHSESdVj4,16009
10564
10571
  sage/coding/all__sagemath_gap.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10565
10572
  sage/coding/codecan/codecan.pxd,sha256=-yV_3H7du9kKSpYi4kx-LyAifWzxt8Us_syox2OSA20,2805
10566
10573
  sage/coding/codecan/all.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10567
10574
  sage/coding/codecan/autgroup_can_label.pyx,sha256=6OYBLt5vtCcX1Y5bceTSN50RVv-4b1Yoebh8-8A6EGs,26106
10568
- sage/coding/codecan/codecan.cpython-312-darwin.so,sha256=Kw0bC8M-yb1rdpr349LISftdTOBsv65gevkmKxk87MI,293872
10575
+ sage/coding/codecan/codecan.cpython-312-darwin.so,sha256=9l9PKuSl9dxmR92K-Khxs2q2Oh9u3xEYgcYwKIHGqhU,293760
10569
10576
  sage/coding/codecan/all__sagemath_gap.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10570
- sage/coding/codecan/autgroup_can_label.cpython-312-darwin.so,sha256=LIDTMRdVKwrSOQCfEgobNsjgyrgDUdEmacO7CApQnqY,303128
10577
+ sage/coding/codecan/autgroup_can_label.cpython-312-darwin.so,sha256=V7t6FFLWUt8XEQ1nyHVf-67tUZksVwRazPqJQ_EcCxU,303136
10571
10578
  sage/coding/codecan/codecan.pyx,sha256=yabHsbRpxbHbyTNrTtihCvk87FRZxvvyLpyM7UWM_Dw,44926
10572
- sage/rings/universal_cyclotomic_field.py,sha256=hrh0RwgJlhTCiKbVxv4txiahUo3MA40V2uhebL08Jvc,49737
10579
+ sage/rings/universal_cyclotomic_field.py,sha256=9SxDpQErP79YT7eaJwl-eQgeM15ZEPHy_JZtoMsmk0M,49761
10580
+ sage/rings/species.py,sha256=-jdi1vxVGINhzTAewIT_q4-itSiZQ5esZpK7i4QEWXY,95477
10573
10581
  sage/rings/all__sagemath_gap.py,sha256=zp3YvAicr5KOBRkL4JowXChnJ4alNq2pq-DzejZ11DE,195
10574
10582
  sage/geometry/ribbon_graph.py,sha256=RdiKR3d0-zwqDc3QWvbQ1ODIVgzRQ3nAJcggmf0o97k,48909
10575
10583
  sage/geometry/all__sagemath_gap.py,sha256=REzYJFn-wm_XHNsj7VemcU2CAtiOrEwa5flNcs0zAR4,163
10576
10584
  sage/matrix/matrix_gap.pxd,sha256=SjdGKj8fAWF2WojhiVbyRzl9uJQPLywixGrUO-ohUfQ,305
10577
10585
  sage/matrix/all__sagemath_gap.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10578
- sage/matrix/matrix_gap.cpython-312-darwin.so,sha256=GernZy62jEpAqyCeAwycQrKdzOXAe_NdtSZ3U96XZZI,169072
10579
- sage/matrix/matrix_gap.pyx,sha256=Et2CgOeC1q6YnJN4CH8OA1cXBSmMsO9jlzZUI1mPLt0,13712
10586
+ sage/matrix/matrix_gap.cpython-312-darwin.so,sha256=GPXZJM4Rx_S7nQ85tbnf6dvRyIK238aLXn2OzPEXFjc,169072
10587
+ sage/matrix/matrix_gap.pyx,sha256=gPOMGKhRezDGrxGdvxSm-jyqBXvdZ1WY2tYO3RU_4mE,13747
10580
10588
  sage/interfaces/all__sagemath_gap.py,sha256=Tzpetos0ih-3KeCyjXrlRL8IHaMKehOTYLKYbpM_g8w,42
10581
10589
  sage/interfaces/gap3.py,sha256=oumiD4-ntTNg3g4qP733rlp4ud-c5FXgrk_Pjtcqcik,32914
10582
- sage/interfaces/gap.py,sha256=pqeDF1YO-1HFxMzysbJ-PZezZS62BdLAuiVCI_no9rw,59431
10590
+ sage/interfaces/gap.py,sha256=f3JtMUDsi-4cmylHHZA0QF5FPkKe7ci-BXHkEyu1F68,59667
10583
10591
  sage/interfaces/gap_workspace.py,sha256=6325mTcx8RgDfHGHuUse-QwM1sSj8S9dFNMvwir7Z_U,4719
10584
- passagemath_gap-10.5.2.dist-info/RECORD,,
10585
- passagemath_gap-10.5.2.dist-info/WHEEL,sha256=-jMg1biU__M5qk4nhryrDyoYePqDdpn82xqlPJ6rFXc,110
10586
- passagemath_gap-10.5.2.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
10587
- passagemath_gap-10.5.2.dist-info/METADATA,sha256=4O-sc9Fr9oEmvsaM6q37eVBnioMxrt_vZemXEyrbkZc,3864
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.6.0)
2
+ Generator: setuptools (79.0.0)
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-macosx_13_0_x86_64
5
5
 
Binary file
Binary file
sage/all__sagemath_gap.py CHANGED
@@ -8,9 +8,14 @@ This distribution makes the following feature available::
8
8
  sage: sage__libs__gap().is_present()
9
9
  FeatureTestResult('sage.libs.gap', True)
10
10
  """
11
+ from sage.all__sagemath_categories import *
12
+
13
+ import sage.groups.perm_gps.permgroup_element
11
14
 
12
15
  from sage.geometry.all__sagemath_gap import *
13
16
 
17
+ from sage.groups.all__sagemath_gap import *
18
+
14
19
  import sage.libs.gap.element
15
20
 
16
21
  from sage.libs.gap.libgap import libgap
@@ -1174,7 +1174,7 @@ def _gap_factorization(w, gens):
1174
1174
 
1175
1175
  EXAMPLES::
1176
1176
 
1177
- sage: from sage.combinat.root_system.reflection_group_element import _gap_factorization
1177
+ sage: from sage.combinat.root_system.reflection_group_element import _gap_factorization # optional - gap3
1178
1178
  sage: W = ReflectionGroup((1,1,3)) # optional - gap3
1179
1179
  sage: gens = [W.simple_reflection(i) for i in W.index_set()] # optional - gap3
1180
1180
  sage: [_gap_factorization(w,gens) for w in W] # optional - gap3
@@ -1248,7 +1248,7 @@ def _gap_return(S, coerce_obj='self'):
1248
1248
 
1249
1249
  TESTS::
1250
1250
 
1251
- sage: from sage.combinat.root_system.reflection_group_complex import _gap_return
1251
+ sage: from sage.combinat.root_system.reflection_group_complex import _gap_return # optional - gap3
1252
1252
  sage: _gap_return("[ (), (1,4)(2,3)(5,6), (1,6,2)(3,5,4) ]") # optional - gap3
1253
1253
  ['()', '(1,4)(2,3)(5,6)', '(1,6,2)(3,5,4)']
1254
1254
  """
@@ -141,24 +141,24 @@ def ReflectionGroup(*args, **kwds):
141
141
  X = arg
142
142
 
143
143
  # precheck for valid input data
144
- if not (isinstance(X, (CartanType_abstract,tuple)) or (X in ZZ and 4 <= X <= 37)):
144
+ if not (isinstance(X, (CartanType_abstract, tuple)) or (X in ZZ and 4 <= X <= 37)):
145
145
  raise ValueError(error_msg % X)
146
146
 
147
147
  # transforming two reducible types and an irreducible type
148
148
  if isinstance(X, CartanType_abstract):
149
149
  if not X.is_finite():
150
150
  raise ValueError(error_msg % X)
151
- if hasattr(X,"cartan_type"):
151
+ if hasattr(X, "cartan_type"):
152
152
  X = X.cartan_type()
153
153
  if X.is_irreducible():
154
154
  W_types.extend([(X.letter, X.n)])
155
155
  else:
156
- W_types.extend([(x.letter, x.n) for x in X.component_types()])
156
+ W_types.extend((x.letter, x.n) for x in X.component_types())
157
157
 
158
- elif X == (2,2,2) or X == ('I',2):
159
- W_types.extend([('A',1), ('A',1)])
158
+ elif X == (2, 2, 2) or X == ('I', 2):
159
+ W_types.extend([('A', 1), ('A', 1)])
160
160
 
161
- elif X == (2,2,3):
161
+ elif X == (2, 2, 3):
162
162
  W_types.extend([('A', 3)])
163
163
 
164
164
  else:
@@ -1,4 +1,5 @@
1
1
  # sage_setup: distribution = sagemath-gap
2
+ # sage.doctest: needs sage.modules
2
3
  r"""
3
4
  Automorphisms of abelian groups
4
5
 
@@ -1,4 +1,5 @@
1
1
  # sage_setup: distribution = sagemath-gap
2
+ # sage.doctest: needs sage.modules
2
3
  r"""
3
4
  Finitely generated abelian groups with GAP.
4
5
 
@@ -1,4 +1,5 @@
1
1
  # sage_setup: distribution = sagemath-gap
2
+ # sage.doctest: needs sage.modules
2
3
  """
3
4
  Homomorphisms of abelian groups
4
5
 
@@ -2,3 +2,10 @@
2
2
 
3
3
  from sage.groups.perm_gps.all import *
4
4
  from sage.groups.abelian_gps.all__sagemath_gap import *
5
+
6
+ from sage.misc.lazy_import import lazy_import
7
+
8
+ lazy_import('sage.groups.class_function', 'ClassFunction')
9
+ lazy_import('sage.groups.conjugacy_classes', ['ConjugacyClass', 'ConjugacyClassGAP'])
10
+
11
+ del lazy_import