Skip to content

Commit

Permalink
Add decorators
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Moss committed Jan 25, 2024
1 parent f28fad1 commit 8092103
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion aequilibrae/paths/graph_building.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ cimport cython

from libcpp.queue cimport queue


@cython.wraparound(False)
@cython.embedsignature(True)
@cython.boundscheck(False)
@cython.initializedcheck(False)
cdef void _remove_dead_ends(
long long [:] graph_fs,
long long [:] all_nodes,
Expand Down

0 comments on commit 8092103

Please sign in to comment.