Skip to content

Commit

Permalink
Changed double[:,:] to no.ndarray to resolve test conflicts in is_int…
Browse files Browse the repository at this point in the history
…eger_array_cython
  • Loading branch information
Kramer84 committed Oct 20, 2024
1 parent 6aae163 commit 2519b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyfqmr/Simplify.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def is_integer_array(arr):
@cython.boundscheck(False)
@cython.wraparound(False)
@cython.nonecheck(False)
def is_integer_array_cython(double[:, :] arr):
def is_integer_array_cython(np.ndarray arr):
cdef Py_ssize_t i, j
cdef Py_ssize_t n_rows = arr.shape[0]
cdef Py_ssize_t n_cols = arr.shape[1]
Expand Down

0 comments on commit 2519b67

Please sign in to comment.