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

15 lines
256 B
Cython

# Heap routines, used in various Cython implementations.
from cython cimport floating
from ._typedefs cimport intp_t
cdef int heap_push(
floating* values,
intp_t* indices,
intp_t size,
floating val,
intp_t val_idx,
) noexcept nogil