We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 245fcb1 commit 06fa3aaCopy full SHA for 06fa3aa
src/sage/sets/disjoint_set.pxd
@@ -22,16 +22,13 @@ cdef class DisjointSet_class(SageObject):
22
cdef class DisjointSet_of_integers(DisjointSet_class):
23
cpdef int find(self, int i)
24
cpdef void union(self, int i, int j)
25
- cdef inline int _find(self, int i)
26
- cdef inline void _union(self, int i, int j)
27
cpdef root_to_elements_dict(self)
28
cpdef element_to_root_dict(self)
29
cpdef to_digraph(self)
30
31
cdef class DisjointSet_of_hashables(DisjointSet_class):
32
cdef list _int_to_el
33
cdef dict _el_to_int
34
- cdef DisjointSet_of_integers _d
35
cpdef find(self, e)
36
cpdef void union(self, e, f)
37
0 commit comments