forked from AequilibraE/aequilibrae
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace the internal Fibonacci heap with a 4-ary priority queue (Aequ…
…ilibraE#374) * Default to using memory-only mode for matrices * Enable Numpy API version macro and language level 3 * Replace Fibonacci heap with 4-ary heap written by François Pacull. Change the Dijkstra's implementation to make use of this new heap. Originally written by François Pacull. Co-authored-by: djfrancesco <pacullfrancois@gmail.com> Co-authored-by: chrisobi02 <chrisgobrien02@gmail.com> Co-authored-by: Jamie Cook <jimi.cook@gmail.com> Co-authored-by: Pedro Camargo <c@margo.co>
- Loading branch information
1 parent
85d2a7d
commit 7c2beb6
Showing
48 changed files
with
388 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# cython: language_level=3 | ||
import os | ||
|
||
# cython: language_level=3 | ||
cimport numpy as np | ||
from libcpp cimport bool | ||
|
||
|
Oops, something went wrong.