Files
INTUIA/Programa final/_internal/sklearn/utils/_heap.pxd
T

15 lines
256 B
Cython
Raw Normal View History

2026-03-15 13:27:50 +00:00
# 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