You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Heap routines, used in various Cython implementations.
|
|
|
|
from cython cimport floating
|
|
|
|
from sklearn.utils._typedefs cimport intp_t
|
|
|
|
|
|
cdef int heap_push(
|
|
floating* values,
|
|
intp_t* indices,
|
|
intp_t size,
|
|
floating val,
|
|
intp_t val_idx,
|
|
) noexcept nogil
|