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.
@@ -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=?)