passagemath-linbox 10.6.32__cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_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.

Potentially problematic release.


This version of passagemath-linbox might be problematic. Click here for more details.

Files changed (73) hide show
  1. passagemath_linbox-10.6.32.dist-info/METADATA +100 -0
  2. passagemath_linbox-10.6.32.dist-info/RECORD +73 -0
  3. passagemath_linbox-10.6.32.dist-info/WHEEL +6 -0
  4. passagemath_linbox-10.6.32.dist-info/top_level.txt +2 -0
  5. passagemath_linbox.libs/libfflas-d452d784.so.1.0.0 +0 -0
  6. passagemath_linbox.libs/libffpack-32579c9b.so.1.0.0 +0 -0
  7. passagemath_linbox.libs/libflint-66e12231.so.21.0.0 +0 -0
  8. passagemath_linbox.libs/libgd-76eb082b.so.3.0.11 +0 -0
  9. passagemath_linbox.libs/libgfortran-83c28eba.so.5.0.0 +0 -0
  10. passagemath_linbox.libs/libgivaro-fc554fc9.so.9.2.1 +0 -0
  11. passagemath_linbox.libs/libgmp-6e109695.so.10.5.0 +0 -0
  12. passagemath_linbox.libs/libgmpxx-ecb9d6e3.so.4.7.0 +0 -0
  13. passagemath_linbox.libs/libiml-aeb1d147.so.0.1.1 +0 -0
  14. passagemath_linbox.libs/liblinbox-f1d24fc1.so.0.0.0 +0 -0
  15. passagemath_linbox.libs/libm4ri-9da2b874.so.1.0.0 +0 -0
  16. passagemath_linbox.libs/libm4rie-cf8cc058.so.1.0.0 +0 -0
  17. passagemath_linbox.libs/libmpfr-82690d50.so.6.2.1 +0 -0
  18. passagemath_linbox.libs/libopenblasp-r0-6dcb67f9.3.29.so +0 -0
  19. passagemath_linbox.libs/libpng16-b4a91cd1.so.16.43.0 +0 -0
  20. passagemath_linbox.libs/libquadmath-2284e583.so.0.0.0 +0 -0
  21. sage/all__sagemath_linbox.py +2 -0
  22. sage/geometry/all__sagemath_linbox.py +1 -0
  23. sage/geometry/integral_points.pxi +1426 -0
  24. sage/geometry/integral_points_integer_dense.cpython-313-x86_64-linux-gnu.so +0 -0
  25. sage/geometry/integral_points_integer_dense.pyx +7 -0
  26. sage/libs/all__sagemath_linbox.py +1 -0
  27. sage/libs/iml.pxd +10 -0
  28. sage/libs/linbox/__init__.py +1 -0
  29. sage/libs/linbox/conversion.pxd +185 -0
  30. sage/libs/linbox/fflas.pxd +189 -0
  31. sage/libs/linbox/givaro.pxd +109 -0
  32. sage/libs/linbox/linbox.pxd +219 -0
  33. sage/libs/linbox/linbox_flint_interface.cpython-313-x86_64-linux-gnu.so +0 -0
  34. sage/libs/linbox/linbox_flint_interface.pxd +18 -0
  35. sage/libs/linbox/linbox_flint_interface.pyx +192 -0
  36. sage/libs/m4ri.pxd +198 -0
  37. sage/libs/m4rie.pxd +204 -0
  38. sage/matrix/all__sagemath_linbox.py +1 -0
  39. sage/matrix/matrix_cyclo_linbox.cpython-313-x86_64-linux-gnu.so +0 -0
  40. sage/matrix/matrix_cyclo_linbox.pyx +361 -0
  41. sage/matrix/matrix_gf2e_dense.cpython-313-x86_64-linux-gnu.so +0 -0
  42. sage/matrix/matrix_gf2e_dense.pxd +15 -0
  43. sage/matrix/matrix_gf2e_dense.pyx +1573 -0
  44. sage/matrix/matrix_integer_iml.cpython-313-x86_64-linux-gnu.so +0 -0
  45. sage/matrix/matrix_integer_iml.pyx +316 -0
  46. sage/matrix/matrix_integer_linbox.cpython-313-x86_64-linux-gnu.so +0 -0
  47. sage/matrix/matrix_integer_linbox.pxd +5 -0
  48. sage/matrix/matrix_integer_linbox.pyx +358 -0
  49. sage/matrix/matrix_integer_sparse_linbox.cpython-313-x86_64-linux-gnu.so +0 -0
  50. sage/matrix/matrix_integer_sparse_linbox.pyx +465 -0
  51. sage/matrix/matrix_mod2_dense.cpython-313-x86_64-linux-gnu.so +0 -0
  52. sage/matrix/matrix_mod2_dense.pxd +14 -0
  53. sage/matrix/matrix_mod2_dense.pyx +2789 -0
  54. sage/matrix/matrix_modn_dense_double.cpython-313-x86_64-linux-gnu.so +0 -0
  55. sage/matrix/matrix_modn_dense_double.pyx +179 -0
  56. sage/matrix/matrix_modn_dense_float.cpython-313-x86_64-linux-gnu.so +0 -0
  57. sage/matrix/matrix_modn_dense_float.pyx +154 -0
  58. sage/matrix/matrix_modn_sparse.cpython-313-x86_64-linux-gnu.so +0 -0
  59. sage/matrix/matrix_modn_sparse.pyx +871 -0
  60. sage/matrix/matrix_rational_linbox.cpython-313-x86_64-linux-gnu.so +0 -0
  61. sage/matrix/matrix_rational_linbox.pyx +36 -0
  62. sage/matrix/misc.cpython-313-x86_64-linux-gnu.so +0 -0
  63. sage/matrix/misc.pyx +418 -0
  64. sage/modules/all__sagemath_linbox.py +1 -0
  65. sage/modules/numpy_util.cpython-313-x86_64-linux-gnu.so +0 -0
  66. sage/modules/numpy_util.pxd +10 -0
  67. sage/modules/numpy_util.pyx +136 -0
  68. sage/modules/vector_mod2_dense.cpython-313-x86_64-linux-gnu.so +0 -0
  69. sage/modules/vector_mod2_dense.pxd +11 -0
  70. sage/modules/vector_mod2_dense.pyx +547 -0
  71. sage/rings/all__sagemath_linbox.py +1 -0
  72. sage/rings/finite_rings/all__sagemath_linbox.py +1 -0
  73. sage/rings/polynomial/all__sagemath_linbox.py +1 -0
@@ -0,0 +1,100 @@
1
+ Metadata-Version: 2.4
2
+ Name: passagemath-linbox
3
+ Version: 10.6.32
4
+ Summary: passagemath: Linear Algebra with Givaro, fflas-ffpack, LinBox, IML, m4ri(e)
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: cysignals<1.12.4; sys_platform == "win32"
33
+ Requires-Dist: cysignals!=1.12.0,>=1.11.2
34
+ Requires-Dist: memory_allocator
35
+ Requires-Dist: passagemath-environment~=10.6.32.0
36
+ Requires-Dist: passagemath-categories~=10.6.32.0
37
+ Provides-Extra: test
38
+ Requires-Dist: passagemath-repl; extra == "test"
39
+ Requires-Dist: passagemath-modules; extra == "test"
40
+ Provides-Extra: primecountpy
41
+ Requires-Dist: passagemath-primesieve-primecount; extra == "primecountpy"
42
+
43
+ ===============================================================================================
44
+ passagemath: Linear Algebra with Givaro, fflas-ffpack, LinBox, IML, m4ri(e)
45
+ ===============================================================================================
46
+
47
+ `passagemath <https://github.com/passagemath/passagemath>`__ is open
48
+ source mathematical software in Python, released under the GNU General
49
+ Public Licence GPLv2+.
50
+
51
+ It is a fork of `SageMath <https://www.sagemath.org/>`__, which has been
52
+ developed 2005-2025 under the motto “Creating a Viable Open Source
53
+ Alternative to Magma, Maple, Mathematica, and MATLAB”.
54
+
55
+ The passagemath fork uses the motto "Creating a Free Passage Between the
56
+ Scientific Python Ecosystem and Mathematical Software Communities."
57
+ It was created in October 2024 with the following goals:
58
+
59
+ - providing modularized installation with pip,
60
+ - establishing first-class membership in the scientific Python
61
+ ecosystem,
62
+ - giving `clear attribution of upstream
63
+ projects <https://groups.google.com/g/sage-devel/c/6HO1HEtL1Fs/m/G002rPGpAAAJ>`__,
64
+ - providing independently usable Python interfaces to upstream
65
+ libraries,
66
+ - offering `platform portability and integration testing
67
+ services <https://github.com/passagemath/passagemath/issues/704>`__
68
+ to upstream projects,
69
+ - inviting collaborations with upstream projects,
70
+ - `building a professional, respectful, inclusive
71
+ community <https://groups.google.com/g/sage-devel/c/xBzaINHWwUQ>`__,
72
+ - `empowering Sage users to participate in the scientific Python ecosystem
73
+ <https://github.com/passagemath/passagemath/issues/248>`__ by publishing packages,
74
+ - developing a port to `Pyodide <https://pyodide.org/en/stable/>`__ for
75
+ serverless deployment with Javascript,
76
+ - developing a native Windows port.
77
+
78
+ `Full documentation <https://passagemath.org/docs/latest/html/en/index.html>`__ is
79
+ available online.
80
+
81
+ passagemath attempts to support and provides binary wheels suitable for
82
+ all major Linux distributions and recent versions of macOS.
83
+
84
+ Binary wheels for native Windows (x86_64) are are available for a subset of
85
+ the passagemath distributions. Use of the full functionality of passagemath
86
+ on Windows currently requires the use of Windows Subsystem for Linux (WSL)
87
+ or virtualization.
88
+
89
+ The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.13.x.
90
+
91
+
92
+ About this pip-installable distribution package
93
+ -----------------------------------------------
94
+
95
+ This pip-installable distribution ``passagemath-linbox``
96
+ provides modules that depend on the `LinBox suite <https://linalg.org/>`_
97
+ (Givaro, fflas-ffpack, LinBox), or on the libraries
98
+ `IML <https://cs.uwaterloo.ca/~astorjoh/iml.html>`_,
99
+ `m4ri <https://bitbucket.org/malb/m4ri/src/master/>`_,
100
+ `m4rie <https://bitbucket.org/malb/m4rie/src/master/>`_.
@@ -0,0 +1,73 @@
1
+ passagemath_linbox.libs/libfflas-d452d784.so.1.0.0,sha256=-x64HWK3rvN-l4dJA4ceSf2VmunTo0bu3gysb4AayXw,11047465
2
+ passagemath_linbox.libs/libffpack-32579c9b.so.1.0.0,sha256=CFyK8X0eezLon1LUDfkSCb60oWE9Svaj0svf9FZG7Ko,10923553
3
+ passagemath_linbox.libs/libflint-66e12231.so.21.0.0,sha256=iwhq-IgNofbnc8kIZyunPBoOz3NcGpfpHQ1KKuVBZ-U,13168633
4
+ passagemath_linbox.libs/libgd-76eb082b.so.3.0.11,sha256=NXcK3Lfekbro2tPt9HLsV-KYKRt5ROTUyVNsQz5gFg4,1159129
5
+ passagemath_linbox.libs/libgfortran-83c28eba.so.5.0.0,sha256=oKWdrfN1viV4XXSu-wmh4LlkMyPXcpCXGKpXaE3okYs,6329289
6
+ passagemath_linbox.libs/libgivaro-fc554fc9.so.9.2.1,sha256=iDwVDck6GSULGem_bh0PGAik7Wxxh_Zk6NdN4FjSe0A,2592369
7
+ passagemath_linbox.libs/libgmp-6e109695.so.10.5.0,sha256=kNPQVp5MPUB3mHDGNY3Gdh04Rxl0-IwZ5f1T3ufqiIk,761057
8
+ passagemath_linbox.libs/libgmpxx-ecb9d6e3.so.4.7.0,sha256=gfjRxfRybfAIHq7x2CyQMJntClHcwk6ydyo_Xdkur_I,78881
9
+ passagemath_linbox.libs/libiml-aeb1d147.so.0.1.1,sha256=2CJ-Blx_YxwhkXz4u0Tco2F7vzMH2pT5Uu2sQ0OSGRU,536921
10
+ passagemath_linbox.libs/liblinbox-f1d24fc1.so.0.0.0,sha256=pI7S18WMuenZYKm0kRr4pjII6zv9bVZA8665Ad4Ys_I,456865
11
+ passagemath_linbox.libs/libm4ri-9da2b874.so.1.0.0,sha256=nUNjqoyv20sIWnQJ3fLmNRrNKwVHP24DCya6KX0MOvI,1066449
12
+ passagemath_linbox.libs/libm4rie-cf8cc058.so.1.0.0,sha256=K0nWqg7KTxYGAhJNO9MXIy-XkzVy58x_Ni0NaNITICg,2848041
13
+ passagemath_linbox.libs/libmpfr-82690d50.so.6.2.1,sha256=pTqtvbOZ2CQzZks2h3-rgpsDLBxLVMIMhp2rB5OhMtk,833913
14
+ passagemath_linbox.libs/libopenblasp-r0-6dcb67f9.3.29.so,sha256=jSEoME9gNePt1uEof3GUGymY790Ppo0_cA3GldbfUqA,39417081
15
+ passagemath_linbox.libs/libpng16-b4a91cd1.so.16.43.0,sha256=khFg4-TXD8Cz7VWaiWPhS1Dc95hRKSP1GZBs01Oc0TM,1081449
16
+ passagemath_linbox.libs/libquadmath-2284e583.so.0.0.0,sha256=Vwsbw14vLhePUjOoyd3coHbstHxcZfoJ-L05UZictIE,2100929
17
+ sage/all__sagemath_linbox.py,sha256=NMwjUZtbj_4-jSdwq4nPv48pR_B7Urfz4I1JEsEW6Po,65
18
+ sage/geometry/all__sagemath_linbox.py,sha256=UWBPwWZ5yRsA8jzBgem1GYtFkfCHWahcKdMgw72RrPg,45
19
+ sage/geometry/integral_points.pxi,sha256=moeJvCfW5MKriOEUZFZCa6yskv8JRgLa1JKbTU-Ad5c,50949
20
+ sage/geometry/integral_points_integer_dense.cpython-313-x86_64-linux-gnu.so,sha256=UiSU11M4Avb6zAWQ1qyvJoy-rb_2EbkonPhH47XeEOc,2222393
21
+ sage/geometry/integral_points_integer_dense.pyx,sha256=h_mcMB5MQ6V0rHXPMzPCZopaXZ04ARpqMmXCrwhGoJo,288
22
+ sage/libs/all__sagemath_linbox.py,sha256=UWBPwWZ5yRsA8jzBgem1GYtFkfCHWahcKdMgw72RrPg,45
23
+ sage/libs/iml.pxd,sha256=euUX_mpEZpkxGX99lzkgSB01QHOFz4wV82VzfZpTwHM,366
24
+ sage/libs/m4ri.pxd,sha256=zdbJ2wXZxc-5vCIAwEIjXJyrfEJEmeRdU7hv7UmMD_s,5440
25
+ sage/libs/m4rie.pxd,sha256=GQJEACvMIFOXJWQtOj25xet5xl0_uCyAWW7F6hzNhlQ,6572
26
+ sage/libs/linbox/__init__.py,sha256=UWBPwWZ5yRsA8jzBgem1GYtFkfCHWahcKdMgw72RrPg,45
27
+ sage/libs/linbox/conversion.pxd,sha256=KH7BP9kjYBZFqCptxalTwmWsYZoZslFn0JOH4fXpMeA,6222
28
+ sage/libs/linbox/fflas.pxd,sha256=eEG2v-3daMeMoMAGJpjj7TIxMHuamxZnNBy2JJVB50I,8602
29
+ sage/libs/linbox/givaro.pxd,sha256=IWf2ZFhJc_azG4cGf3Cu5rsAKdjLD4jT5bJxskOPMxg,3551
30
+ sage/libs/linbox/linbox.pxd,sha256=lgiGEkA6ZBariBB_oATb85vQp8enStk14DOYKcs3pNo,9755
31
+ sage/libs/linbox/linbox_flint_interface.cpython-313-x86_64-linux-gnu.so,sha256=jO7kaIyZ4iUlYmczBN08iZB6TuQjBWOch9e3joBP-IQ,4839001
32
+ sage/libs/linbox/linbox_flint_interface.pxd,sha256=fkwU35eWrNNNumS7t_g6vIaFcbmtnE1WNa1vwwzBSwk,628
33
+ sage/libs/linbox/linbox_flint_interface.pyx,sha256=wU_7LcEEZoqk3SWhXYphoptMgOXZCkjU71KkjNsF4Mk,6314
34
+ sage/matrix/all__sagemath_linbox.py,sha256=UWBPwWZ5yRsA8jzBgem1GYtFkfCHWahcKdMgw72RrPg,45
35
+ sage/matrix/matrix_cyclo_linbox.cpython-313-x86_64-linux-gnu.so,sha256=7Rxk73U9YiNnmtWleuHEhRnQtup8y6Tl0KFTPAgsuAM,1139897
36
+ sage/matrix/matrix_cyclo_linbox.pyx,sha256=ue2wKXaEZuFXf25yf4RVGVU48t1xVMHgG47Tx0ajNhI,13510
37
+ sage/matrix/matrix_gf2e_dense.cpython-313-x86_64-linux-gnu.so,sha256=9za3zpNnCk5d_xe7Y1K2PutPW_FK1J2GH8MyVFV927U,2035561
38
+ sage/matrix/matrix_gf2e_dense.pxd,sha256=Up8dwJYAE0UApq2Bkd536gesckwaN1e4YBL8SMQnVyw,655
39
+ sage/matrix/matrix_gf2e_dense.pyx,sha256=CTV6AdKcYp1i3x8Gu-jeSoLZrh1M-B8DnnTmGQRS1AA,52284
40
+ sage/matrix/matrix_integer_iml.cpython-313-x86_64-linux-gnu.so,sha256=vJEMTanXujOagF2zr0SvivNl9l3UUJnccpO7HM2k_24,738545
41
+ sage/matrix/matrix_integer_iml.pyx,sha256=dHH8pCeS-pWOUnqForEjmXcAAuLYYjvgQ1xQ3T-pjO8,9258
42
+ sage/matrix/matrix_integer_linbox.cpython-313-x86_64-linux-gnu.so,sha256=NagKDzadLWVf4m-o7JipcgOy2yDqc_ydgLqSNqM9bb4,1152353
43
+ sage/matrix/matrix_integer_linbox.pxd,sha256=2Wrwz_-6IGpsm1K1MzBF_s0OrhmOQvlLWn7dHaPE6e4,174
44
+ sage/matrix/matrix_integer_linbox.pyx,sha256=PhJNWZvD5fv21HiJECHVa9Ch4d8_xAefk3yfeWxwu2g,12281
45
+ sage/matrix/matrix_integer_sparse_linbox.cpython-313-x86_64-linux-gnu.so,sha256=HcBIdf2j-zE6LdynvFb2lNthKMhxYwc0S1n3SRejuQA,23011241
46
+ sage/matrix/matrix_integer_sparse_linbox.pyx,sha256=ZFHLzqvDuv_ONES1TNBtJUdPo_jyseH9RknR_rEFoLc,15210
47
+ sage/matrix/matrix_mod2_dense.cpython-313-x86_64-linux-gnu.so,sha256=kutEHUBZfRUPfHpM2dX5ezVTJ6ffJrqC-AYe-O5cDek,2977849
48
+ sage/matrix/matrix_mod2_dense.pxd,sha256=2qm_KT4ZLUkiqMsjJg5pSXuxd6qIb5YsH_QhH8ggZTE,520
49
+ sage/matrix/matrix_mod2_dense.pyx,sha256=Zi58yp3dh5aVYGT1J8fZ1WKiCMklaMwOhJ42LZh1ghw,92251
50
+ sage/matrix/matrix_modn_dense_double.cpython-313-x86_64-linux-gnu.so,sha256=jysIzOS0G1xD6Pv6hRSbZwVPOOqRg1uiaQsYGTszOWk,3970369
51
+ sage/matrix/matrix_modn_dense_double.pyx,sha256=I29fdBuDVuBbsgy4rNY_YjvPU9qYKtRD2JhTD47CTV0,5997
52
+ sage/matrix/matrix_modn_dense_float.cpython-313-x86_64-linux-gnu.so,sha256=zvW52bU5-eYiunWxM_gcdNQ_L0lx7vfuYHxfBUWRefs,3982633
53
+ sage/matrix/matrix_modn_dense_float.pyx,sha256=KJqs_X6B2YzdWIr9judQ6xuwbgi--q-faInJUqPsa2I,4990
54
+ sage/matrix/matrix_modn_sparse.cpython-313-x86_64-linux-gnu.so,sha256=9rb1_gKsPtxWaU_wZaQfNEXZMHPQW8VxuFzd7Z8pdvk,1898065
55
+ sage/matrix/matrix_modn_sparse.pyx,sha256=d9kEveH8GJeUlwMiGkr2-rrvrtRazFKN1bgTN8qZWok,28884
56
+ sage/matrix/matrix_rational_linbox.cpython-313-x86_64-linux-gnu.so,sha256=e_rzjsalDMk0Fps4MBxa2GBa3abMbKx6HltgYTIxqXE,225601
57
+ sage/matrix/matrix_rational_linbox.pyx,sha256=p7TvsaHiVV3qRKTxHrpvikKj1MTBrYYOE2Y0Wz-mJx4,1646
58
+ sage/matrix/misc.cpython-313-x86_64-linux-gnu.so,sha256=dnMjzn7Su_CF9VIT2T6jROhOqAlozrOXZvkcxpYyISI,992585
59
+ sage/matrix/misc.pyx,sha256=mPas7GrMAx6H2E79iCSswsaJGbwAneZtzJ0vRGNHzL4,16176
60
+ sage/modules/all__sagemath_linbox.py,sha256=UWBPwWZ5yRsA8jzBgem1GYtFkfCHWahcKdMgw72RrPg,45
61
+ sage/modules/numpy_util.cpython-313-x86_64-linux-gnu.so,sha256=X7ZB86e0vP7poPKMmBlQks2IkkeZgN1jIhQD_LH1jyU,2262832
62
+ sage/modules/numpy_util.pxd,sha256=k2A4AHEUxZDTOTTd2kyyR7DjwMgXydHSMZnUYobTcog,489
63
+ sage/modules/numpy_util.pyx,sha256=WuyczGWcAwqOGI_63kWi50u1hWH7DTFJZW_dkpII7w4,4695
64
+ sage/modules/vector_mod2_dense.cpython-313-x86_64-linux-gnu.so,sha256=8j7Cpc1Ho-UBieP7UR0VRV7EgMJWIhJcvSTmgNQyPp4,1149681
65
+ sage/modules/vector_mod2_dense.pxd,sha256=dLtALCY_gueEz5wjOKS4FEGOF7AfOV_FwC6ioXCDpi4,317
66
+ sage/modules/vector_mod2_dense.pyx,sha256=OsdI072i6PNndiMyKvsXO8KVNKeza9frjBc5y-yq7MY,16489
67
+ sage/rings/all__sagemath_linbox.py,sha256=UWBPwWZ5yRsA8jzBgem1GYtFkfCHWahcKdMgw72RrPg,45
68
+ sage/rings/finite_rings/all__sagemath_linbox.py,sha256=UWBPwWZ5yRsA8jzBgem1GYtFkfCHWahcKdMgw72RrPg,45
69
+ sage/rings/polynomial/all__sagemath_linbox.py,sha256=UWBPwWZ5yRsA8jzBgem1GYtFkfCHWahcKdMgw72RrPg,45
70
+ passagemath_linbox-10.6.32.dist-info/METADATA,sha256=x3e6enA-zpha382ONn9dssm8N40PIMejdqlkDwV2bQk,4894
71
+ passagemath_linbox-10.6.32.dist-info/WHEEL,sha256=FGhoiLBD6z3eO88tnYRS0TgLaWveAr5uyXIqBlx6mno,152
72
+ passagemath_linbox-10.6.32.dist-info/top_level.txt,sha256=Kmzulf9WsphADFQuqgvdy5mvTLDj_V2zkFHU2s3UXos,6
73
+ passagemath_linbox-10.6.32.dist-info/RECORD,,
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-manylinux_2_27_x86_64
5
+ Tag: cp313-cp313-manylinux_2_28_x86_64
6
+
@@ -0,0 +1,2 @@
1
+
2
+ sage
@@ -0,0 +1,2 @@
1
+ # sage_setup: distribution = sagemath-linbox
2
+ # delvewheel: patch
@@ -0,0 +1 @@
1
+ # sage_setup: distribution = sagemath-linbox