_heap.pxd 256 B

1234567891011121314
  1. # Heap routines, used in various Cython implementations.
  2. from cython cimport floating
  3. from ._typedefs cimport intp_t
  4. cdef int heap_push(
  5. floating* values,
  6. intp_t* indices,
  7. intp_t size,
  8. floating val,
  9. intp_t val_idx,
  10. ) noexcept nogil