Intelegentny_Pszczelarz/.venv/Lib/site-packages/sklearn/utils/_heap.pxd
2023-06-19 00:49:18 +02:00

15 lines
251 B
Cython

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