From 8092103b7a01a4cc67b84bd33d922901fac3e252 Mon Sep 17 00:00:00 2001 From: Jake-Moss Date: Thu, 25 Jan 2024 17:44:57 +1000 Subject: [PATCH] Add decorators --- aequilibrae/paths/graph_building.pyx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/aequilibrae/paths/graph_building.pyx b/aequilibrae/paths/graph_building.pyx index 4514740ee..bb67e5a0c 100644 --- a/aequilibrae/paths/graph_building.pyx +++ b/aequilibrae/paths/graph_building.pyx @@ -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,