edsger 0.1.5__cp310-cp310-macosx_11_0_arm64.whl → 0.1.6__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/bellman_ford.pyx CHANGED
@@ -19,6 +19,13 @@ cpdef functions:
19
19
  Detect negative cycles in the graph.
20
20
  """
21
21
 
22
+ # cython: language_level=3
23
+ # cython: boundscheck=False
24
+ # cython: wraparound=False
25
+ # cython: embedsignature=False
26
+ # cython: cdivision=True
27
+ # cython: initializedcheck=False
28
+
22
29
  cimport numpy as cnp
23
30
  import numpy as np
24
31