Skip to content

Commit

Permalink
Fix under counting for compressed links (#416)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Moss committed May 19, 2023
1 parent 7b93cf9 commit 4a8b23e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aequilibrae/paths/graph_building.pyx
Expand Up @@ -85,7 +85,7 @@ cdef long long _build_compressed_graph(long long[:] link_idx,
compressed_dir[slink] = -1
else:
compressed_dir[slink] = -999
slink += 1
slink += 1

return slink

Expand Down

0 comments on commit 4a8b23e

Please sign in to comment.