passagemath-cmr 10.6.18__cp311-cp311-musllinux_1_2_aarch64.whl → 10.6.44__cp311-cp311-musllinux_1_2_aarch64.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-cmr might be problematic. Click here for more details.
- passagemath_cmr/__init__.py +3 -0
- {passagemath_cmr-10.6.18.dist-info → passagemath_cmr-10.6.44.dist-info}/METADATA +13 -11
- {passagemath_cmr-10.6.18.dist-info → passagemath_cmr-10.6.44.dist-info}/RECORD +9 -8
- passagemath_cmr-10.6.44.dist-info/top_level.txt +3 -0
- sage/libs/cmr/cmr.cpython-311-aarch64-linux-musl.so +0 -0
- sage/matrix/matrix_cmr_sparse.cpython-311-aarch64-linux-musl.so +0 -0
- sage/matrix/matrix_cmr_sparse.pyx +18 -8
- sage/matrix/seymour_decomposition.cpython-311-aarch64-linux-musl.so +0 -0
- passagemath_cmr-10.6.18.dist-info/top_level.txt +0 -2
- {passagemath_cmr-10.6.18.dist-info → passagemath_cmr-10.6.44.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: passagemath-cmr
|
|
3
|
-
Version: 10.6.
|
|
3
|
+
Version: 10.6.44
|
|
4
4
|
Summary: passagemath: Combinatorial matrix recognition
|
|
5
5
|
Author-email: The Sage Developers <sage-support@googlegroups.com>
|
|
6
6
|
Maintainer: Matthias Köppe, passagemath contributors
|
|
@@ -25,17 +25,18 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
25
25
|
Classifier: Programming Language :: Python :: 3.11
|
|
26
26
|
Classifier: Programming Language :: Python :: 3.12
|
|
27
27
|
Classifier: Programming Language :: Python :: 3.13
|
|
28
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
28
29
|
Classifier: Programming Language :: Python :: Implementation :: CPython
|
|
29
30
|
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
30
|
-
Requires-Python: <3.
|
|
31
|
+
Requires-Python: <3.15,>=3.10
|
|
31
32
|
Description-Content-Type: text/x-rst
|
|
32
|
-
Requires-Dist: cysignals
|
|
33
|
+
Requires-Dist: cysignals!=1.12.4; sys_platform == "win32"
|
|
33
34
|
Requires-Dist: cysignals!=1.12.0,>=1.11.2
|
|
34
|
-
Requires-Dist: passagemath-modules~=10.6.
|
|
35
|
-
Requires-Dist: passagemath-graphs~=10.6.
|
|
35
|
+
Requires-Dist: passagemath-modules~=10.6.44.0
|
|
36
|
+
Requires-Dist: passagemath-graphs~=10.6.44.0
|
|
36
37
|
Provides-Extra: test
|
|
37
|
-
Requires-Dist: passagemath-repl~=10.6.
|
|
38
|
-
Requires-Dist: passagemath-pari~=10.6.
|
|
38
|
+
Requires-Dist: passagemath-repl~=10.6.44.0; extra == "test"
|
|
39
|
+
Requires-Dist: passagemath-pari~=10.6.44.0; extra == "test"
|
|
39
40
|
|
|
40
41
|
==========================================================================
|
|
41
42
|
passagemath: Combinatorial matrix recognition
|
|
@@ -83,7 +84,7 @@ the passagemath distributions. Use of the full functionality of passagemath
|
|
|
83
84
|
on Windows currently requires the use of Windows Subsystem for Linux (WSL)
|
|
84
85
|
or virtualization.
|
|
85
86
|
|
|
86
|
-
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.
|
|
87
|
+
The supported Python versions in the passagemath 10.6.x series are 3.10.x-3.14.x.
|
|
87
88
|
|
|
88
89
|
|
|
89
90
|
About this pip-installable distribution package
|
|
@@ -113,7 +114,7 @@ Examples
|
|
|
113
114
|
|
|
114
115
|
$ pipx run --pip-args="--prefer-binary" --spec "passagemath-cmr[test]" ipython
|
|
115
116
|
|
|
116
|
-
In [1]: from
|
|
117
|
+
In [1]: from passagemath_cmr import *
|
|
117
118
|
|
|
118
119
|
In [2]: from sage.matrix.matrix_cmr_sparse import Matrix_cmr_chr_sparse
|
|
119
120
|
|
|
@@ -141,6 +142,7 @@ Development
|
|
|
141
142
|
passagemath $ source ./.homebrew-build-env # on macOS when homebrew is in use
|
|
142
143
|
passagemath $ export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/lib/wsl/lib # on WSL
|
|
143
144
|
passagemath $ export PIP_CONSTRAINT="$(pwd)/constraints_cmr.txt"
|
|
145
|
+
passagemath $ export PIP_BUILD_CONSTRAINT="$(pwd)/constraints_cmr.txt"
|
|
144
146
|
passagemath $ echo "passagemath-categories @ file://$(pwd)/pkgs/sagemath-categories" >> constraints_cmr.txt
|
|
145
147
|
passagemath $ echo "passagemath-modules @ file://$(pwd)/pkgs/sagemath-modules" >> constraints_cmr.txt
|
|
146
148
|
passagemath $ python3 -m venv cmr-venv
|
|
@@ -154,7 +156,7 @@ Modularized use::
|
|
|
154
156
|
(cmr-venv) passagemath $ pip install -v passagemath-repl
|
|
155
157
|
(cmr-venv) passagemath $ sage
|
|
156
158
|
... sage.all is not available ...
|
|
157
|
-
sage: from
|
|
159
|
+
sage: from passagemath_modules import *
|
|
158
160
|
sage: matroids.Uniform(3, 4)
|
|
159
161
|
U(3, 4): Matroid of rank 3 on 4 elements with circuit-closures
|
|
160
162
|
{3: {{0, 1, 2, 3}}}
|
|
@@ -162,7 +164,7 @@ Modularized use::
|
|
|
162
164
|
In plain Python::
|
|
163
165
|
|
|
164
166
|
(cmr-venv) passagemath $ python3
|
|
165
|
-
>>> from
|
|
167
|
+
>>> from passagemath_modules import *
|
|
166
168
|
>>> matroids.Uniform(3, 4)
|
|
167
169
|
U(3, 4): Matroid of rank 3 on 4 elements with circuit-closures
|
|
168
170
|
{3: {{0, 1, 2, 3}}}
|
|
@@ -1,19 +1,20 @@
|
|
|
1
|
+
passagemath_cmr/__init__.py,sha256=tDxhxUX03EveX4yavWoPphSnQy6Hfch7TjnNMIY-hLU,80
|
|
1
2
|
passagemath_cmr.libs/libcmr-ac9dab83.so,sha256=iOL4SDvgbp9k2n7AEfUXbWAVvv2-29RaBADgGdqtDeQ,4270817
|
|
2
3
|
passagemath_cmr.libs/libgmp-28992bcb.so.10.5.0,sha256=chvEgOPn69KHFEAC4oKOFhJ2LjYfSTYlyAEyFvE1hJg,668217
|
|
3
4
|
sage/all__sagemath_cmr.py,sha256=KR76vnXfmqtz5FA-qDWl-bKa_ltk6s_L01y6zi3VleM,144
|
|
4
5
|
sage/libs/all__sagemath_cmr.py,sha256=qPVTT6gyP0yYSmMXuAIGeRCUG42fV2IhXKSX9Ke1pa0,42
|
|
5
6
|
sage/libs/cmr/__init__.py,sha256=qPVTT6gyP0yYSmMXuAIGeRCUG42fV2IhXKSX9Ke1pa0,42
|
|
6
|
-
sage/libs/cmr/cmr.cpython-311-aarch64-linux-musl.so,sha256=
|
|
7
|
+
sage/libs/cmr/cmr.cpython-311-aarch64-linux-musl.so,sha256=M5wCS2p8BpH5UnXpvMYupfNQ4dwYnKSslInymSenCQE,139376
|
|
7
8
|
sage/libs/cmr/cmr.pxd,sha256=5LFDFXs20sVJoLprRTkfU0qX3SkHtdkdLiFs5B6CCGU,31667
|
|
8
9
|
sage/libs/cmr/cmr.pyx,sha256=h-maxhuJKYDr77zggNg9L7qyaTgRu51_MEXitaI_sdY,861
|
|
9
10
|
sage/matrix/all__sagemath_cmr.py,sha256=qPVTT6gyP0yYSmMXuAIGeRCUG42fV2IhXKSX9Ke1pa0,42
|
|
10
|
-
sage/matrix/matrix_cmr_sparse.cpython-311-aarch64-linux-musl.so,sha256
|
|
11
|
+
sage/matrix/matrix_cmr_sparse.cpython-311-aarch64-linux-musl.so,sha256=-RT8D9qeJbUvfzYrcfzMO-SeGoBqvX83XmuqrfBA1wk,4398201
|
|
11
12
|
sage/matrix/matrix_cmr_sparse.pxd,sha256=EROkdgXmem-ZgdXHKl7Nke_mZC_HKCZPRjocWcyivwY,1095
|
|
12
|
-
sage/matrix/matrix_cmr_sparse.pyx,sha256=
|
|
13
|
-
sage/matrix/seymour_decomposition.cpython-311-aarch64-linux-musl.so,sha256=
|
|
13
|
+
sage/matrix/matrix_cmr_sparse.pyx,sha256=vC-v5BXvtdjgsRipqtX4uhRWLt1s2ESyzr3-3hbQfLQ,249381
|
|
14
|
+
sage/matrix/seymour_decomposition.cpython-311-aarch64-linux-musl.so,sha256=1LoS3vEJWFr9yUQP0mEZ46A2fADwQiJ1PwkuyAy4NQU,4274065
|
|
14
15
|
sage/matrix/seymour_decomposition.pxd,sha256=QYse5YnIa_Dk8NGLU991eFe5u0PzxT_qM0KfXITdt4E,1186
|
|
15
16
|
sage/matrix/seymour_decomposition.pyx,sha256=YS1BpLgFLWTwcqe0EJqlgRl0vRUX-ZhBRKAdgvyZe_U,197498
|
|
16
|
-
passagemath_cmr-10.6.
|
|
17
|
-
passagemath_cmr-10.6.
|
|
18
|
-
passagemath_cmr-10.6.
|
|
19
|
-
passagemath_cmr-10.6.
|
|
17
|
+
passagemath_cmr-10.6.44.dist-info/METADATA,sha256=k1LbkCAB7iJH2bE6ultOxDo1NCgEe6I5Hua-IbjIv3Y,7357
|
|
18
|
+
passagemath_cmr-10.6.44.dist-info/WHEEL,sha256=LNZuceeFd58B9QVekwESAWqB09LEv_tgGDcYQrpkG9U,113
|
|
19
|
+
passagemath_cmr-10.6.44.dist-info/top_level.txt,sha256=CKOQrDewaLP2icikzyFWWNW_krYi3PwlBbqZm_FYt6g,22
|
|
20
|
+
passagemath_cmr-10.6.44.dist-info/RECORD,,
|
|
Binary file
|
|
Binary file
|
|
@@ -5403,20 +5403,25 @@ cdef class Matrix_cmr_chr_sparse(Matrix_cmr_sparse):
|
|
|
5403
5403
|
INPUT:
|
|
5404
5404
|
|
|
5405
5405
|
- ``certificate`` -- boolean (default: ``False``);
|
|
5406
|
-
if ``True``, then return
|
|
5407
|
-
|
|
5408
|
-
|
|
5406
|
+
if ``True``, then return a certificate for the answer:
|
|
5407
|
+
|
|
5408
|
+
- in the case of a ``True`` answer, a (full) Seymour decomposition
|
|
5409
|
+
(:class:`DecompositionNode`),
|
|
5410
|
+
|
|
5411
|
+
- in the case of a ``False`` answer, a (possibly partial) Seymour
|
|
5412
|
+
decomposition and a pair of row and column indices specifying a
|
|
5413
|
+
submatrix with determinant not in `\{0, \pm1\}`.
|
|
5409
5414
|
|
|
5410
5415
|
- ``stop_when_nonTU`` -- boolean (default: ``True``);
|
|
5411
|
-
whether to stop decomposing once
|
|
5416
|
+
whether to stop decomposing once non-TUness is determined.
|
|
5412
5417
|
|
|
5413
5418
|
For a description of other parameters, see :meth:`_set_cmr_seymour_parameters`
|
|
5414
5419
|
|
|
5415
5420
|
- ``row_keys`` -- a finite or enumerated family of arbitrary objects
|
|
5416
|
-
that index the rows of the matrix
|
|
5421
|
+
that index the rows of the matrix, for use in certificates
|
|
5417
5422
|
|
|
5418
5423
|
- ``column_keys`` -- a finite or enumerated family of arbitrary objects
|
|
5419
|
-
that index the columns of the matrix
|
|
5424
|
+
that index the columns of the matrix, for use in certificates
|
|
5420
5425
|
|
|
5421
5426
|
EXAMPLES::
|
|
5422
5427
|
|
|
@@ -5583,8 +5588,13 @@ cdef class Matrix_cmr_chr_sparse(Matrix_cmr_sparse):
|
|
|
5583
5588
|
if submat == NULL:
|
|
5584
5589
|
submat_tuple = None
|
|
5585
5590
|
else:
|
|
5586
|
-
|
|
5587
|
-
|
|
5591
|
+
submat_rows = tuple(submat.rows[i] for i in range(submat.numRows))
|
|
5592
|
+
if row_keys is not None:
|
|
5593
|
+
submat_rows = tuple(row_keys[i] for i in submat_rows)
|
|
5594
|
+
submat_columns = tuple(submat.columns[i] for i in range(submat.numColumns))
|
|
5595
|
+
if column_keys is not None:
|
|
5596
|
+
submat_columns = tuple(column_keys[i] for i in submat_columns)
|
|
5597
|
+
submat_tuple = (submat_rows, submat_columns)
|
|
5588
5598
|
|
|
5589
5599
|
return result, (node, submat_tuple)
|
|
5590
5600
|
|
|
Binary file
|
|
File without changes
|