edsger 0.1.1__cp310-cp310-macosx_11_0_arm64.whl → 0.1.3__cp310-cp310-macosx_11_0_arm64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
edsger/path_tracking.pyx CHANGED
@@ -43,7 +43,7 @@ cpdef cnp.ndarray compute_path(cnp.uint32_t[::1] path_links, int vertex_idx):
43
43
  cdef int _compute_path_first_pass(
44
44
  cnp.uint32_t[::1] path_links,
45
45
  int vertex_idx
46
- ) nogil noexcept:
46
+ ) noexcept nogil:
47
47
  """Returns the path length.
48
48
  """
49
49
 
@@ -69,7 +69,7 @@ cdef void _compute_path_second_pass(
69
69
  cnp.uint32_t[::1] path_links,
70
70
  cnp.uint32_t[::1] path_vertices,
71
71
  int vertex_idx
72
- ) nogil noexcept:
72
+ ) noexcept nogil:
73
73
  """Compute the sequence of vertices forming a path.
74
74
  """
75
75
  cdef size_t i, j, k