Files
zenml/venv/lib/python3.9/site-packages/sklearn/cluster/_hierarchical_fast.pxd
Christian Mantha 2ca0b9ef7c star
2026-03-02 19:10:52 -05:00

10 lines
245 B
Cython

from ..utils._typedefs cimport intp_t
cdef class UnionFind:
cdef intp_t next_label
cdef intp_t[:] parent
cdef intp_t[:] size
cdef void union(self, intp_t m, intp_t n) noexcept
cdef intp_t fast_find(self, intp_t n) noexcept