passagemath-cmr 10.6.33__cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_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.
- passagemath_cmr-10.6.33.dist-info/METADATA +177 -0
- passagemath_cmr-10.6.33.dist-info/RECORD +19 -0
- passagemath_cmr-10.6.33.dist-info/WHEEL +7 -0
- passagemath_cmr-10.6.33.dist-info/top_level.txt +2 -0
- passagemath_cmr.libs/libcmr-a6a18ee8.so +0 -0
- passagemath_cmr.libs/libgmp-93ebf16a.so.10.5.0 +0 -0
- sage/all__sagemath_cmr.py +5 -0
- sage/libs/all__sagemath_cmr.py +1 -0
- sage/libs/cmr/__init__.py +1 -0
- sage/libs/cmr/cmr.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/libs/cmr/cmr.pxd +600 -0
- sage/libs/cmr/cmr.pyx +24 -0
- sage/matrix/all__sagemath_cmr.py +1 -0
- sage/matrix/matrix_cmr_sparse.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/matrix/matrix_cmr_sparse.pxd +33 -0
- sage/matrix/matrix_cmr_sparse.pyx +5749 -0
- sage/matrix/seymour_decomposition.cpython-314-aarch64-linux-gnu.so +0 -0
- sage/matrix/seymour_decomposition.pxd +46 -0
- sage/matrix/seymour_decomposition.pyx +4526 -0
|
Binary file
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
# sage_setup: distribution = sagemath-cmr
|
|
2
|
+
from sage.libs.cmr.cmr cimport CMR_SEYMOUR_NODE, CMR_ELEMENT
|
|
3
|
+
from sage.structure.sage_object cimport SageObject
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
cdef class DecompositionNode(SageObject):
|
|
7
|
+
cdef object _base_ring
|
|
8
|
+
cdef object _matrix
|
|
9
|
+
cdef CMR_SEYMOUR_NODE *_dec
|
|
10
|
+
cdef object _row_keys
|
|
11
|
+
cdef object _column_keys
|
|
12
|
+
cdef object _child_nodes
|
|
13
|
+
cdef object _minors
|
|
14
|
+
|
|
15
|
+
cdef _set_dec(self, CMR_SEYMOUR_NODE *dec)
|
|
16
|
+
cdef _set_root_dec(self)
|
|
17
|
+
cdef _set_row_keys(self, row_keys)
|
|
18
|
+
cdef _set_column_keys(self, column_keys)
|
|
19
|
+
|
|
20
|
+
cdef _CMRelement_to_key(self, CMR_ELEMENT element)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
cdef class BaseGraphicNode(DecompositionNode):
|
|
24
|
+
cdef object _graph
|
|
25
|
+
cdef object _forest_edges
|
|
26
|
+
cdef object _coforest_edges
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
cdef class GraphicNode(BaseGraphicNode):
|
|
30
|
+
pass
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
cdef class CographicNode(BaseGraphicNode):
|
|
34
|
+
pass
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
cdef class PlanarNode(BaseGraphicNode):
|
|
38
|
+
cdef object _cograph
|
|
39
|
+
cdef object _cograph_forest_edges
|
|
40
|
+
cdef object _cograph_coforest_edges
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
cdef create_DecompositionNode(CMR_SEYMOUR_NODE *dec,
|
|
44
|
+
matrix=?,
|
|
45
|
+
row_keys=?, column_keys=?,
|
|
46
|
+
base_ring=?)
|