10 lines
161 B
Cython
10 lines
161 B
Cython
from ._typedefs cimport intp_t
|
|
|
|
from cython cimport floating
|
|
|
|
cdef int simultaneous_sort(
|
|
floating *dist,
|
|
intp_t *idx,
|
|
intp_t size,
|
|
) noexcept nogil
|