This piece of code is written in Python by using Cython to declare a multidimensional array:
cdef int[:, ::1] result_operation_2d_array = np.copy(solution.operation_2d_array)
but what do :
and ::
mean here?
This piece of code is written in Python by using Cython to declare a multidimensional array:
cdef int[:, ::1] result_operation_2d_array = np.copy(solution.operation_2d_array)
but what do :
and ::
mean here?