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.
- edsger/_version.py +1 -1
- edsger/commons.c +151 -147
- edsger/commons.cpython-310-darwin.so +0 -0
- edsger/dijkstra.c +7197 -2762
- edsger/dijkstra.cpython-310-darwin.so +0 -0
- edsger/dijkstra.pyx +525 -0
- edsger/path.py +145 -37
- edsger/path_tracking.c +151 -147
- edsger/path_tracking.cpython-310-darwin.so +0 -0
- edsger/path_tracking.pyx +2 -2
- edsger/pq_4ary_dec_0b.c +203 -199
- edsger/pq_4ary_dec_0b.cpython-310-darwin.so +0 -0
- edsger/pq_4ary_dec_0b.pxd +7 -7
- edsger/pq_4ary_dec_0b.pyx +14 -16
- edsger/prefetch_compat.h +21 -0
- edsger/spiess_florian.c +157 -176
- edsger/spiess_florian.cpython-310-darwin.so +0 -0
- edsger/star.c +151 -147
- edsger/star.cpython-310-darwin.so +0 -0
- edsger/star.pyx +3 -3
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/METADATA +18 -11
- edsger-0.1.3.dist-info/RECORD +33 -0
- edsger-0.1.1.dist-info/RECORD +0 -32
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/WHEEL +0 -0
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/licenses/AUTHORS.rst +0 -0
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/licenses/LICENSE +0 -0
- {edsger-0.1.1.dist-info → edsger-0.1.3.dist-info}/top_level.txt +0 -0
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
|
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
|
72
|
+
) noexcept nogil:
|
73
73
|
"""Compute the sequence of vertices forming a path.
|
74
74
|
"""
|
75
75
|
cdef size_t i, j, k
|