edsger 0.1.2__cp39-cp39-macosx_11_0_arm64.whl → 0.1.3__cp39-cp39-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.
- edsger/_version.py +1 -1
- edsger/commons.c +148 -148
- edsger/dijkstra.c +7060 -2698
- edsger/dijkstra.cpython-39-darwin.so +0 -0
- edsger/dijkstra.pyx +507 -5
- edsger/path.py +145 -37
- edsger/path_tracking.c +148 -148
- edsger/pq_4ary_dec_0b.c +148 -148
- edsger/spiess_florian.c +148 -148
- edsger/star.c +148 -148
- {edsger-0.1.2.dist-info → edsger-0.1.3.dist-info}/METADATA +12 -12
- {edsger-0.1.2.dist-info → edsger-0.1.3.dist-info}/RECORD +16 -16
- {edsger-0.1.2.dist-info → edsger-0.1.3.dist-info}/WHEEL +0 -0
- {edsger-0.1.2.dist-info → edsger-0.1.3.dist-info}/licenses/AUTHORS.rst +0 -0
- {edsger-0.1.2.dist-info → edsger-0.1.3.dist-info}/licenses/LICENSE +0 -0
- {edsger-0.1.2.dist-info → edsger-0.1.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: edsger
|
3
|
-
Version: 0.1.
|
3
|
+
Version: 0.1.3
|
4
4
|
Summary: Graph algorithms in Cython.
|
5
5
|
Author-email: François Pacull <francois.pacull@architecture-performance.fr>
|
6
6
|
Maintainer-email: François Pacull <francois.pacull@architecture-performance.fr>
|
@@ -42,7 +42,7 @@ Dynamic: license-file
|
|
42
42
|
|
43
43
|

|
44
44
|
[](https://codecov.io/gh/aetperf/edsger)
|
45
|
-
[](https://pypi.org/project/edsger/)
|
45
|
+
[](https://pypi.org/project/edsger/)
|
46
46
|
[](https://pepy.tech/project/edsger)
|
47
47
|
[](https://pypi.org/project/edsger/)
|
48
48
|
[](https://github.com/psf/black)
|
@@ -75,14 +75,14 @@ edges = pd.DataFrame({
|
|
75
75
|
edges
|
76
76
|
```
|
77
77
|
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
78
|
+
| | tail | head | weight |
|
79
|
+
|---:|-------:|-------:|---------:|
|
80
|
+
| 0 | 0 | 1 | 1.0 |
|
81
|
+
| 1 | 0 | 2 | 4.0 |
|
82
|
+
| 2 | 1 | 2 | 2.0 |
|
83
|
+
| 3 | 2 | 3 | 1.5 |
|
84
|
+
| 4 | 2 | 4 | 3.0 |
|
85
|
+
| 5 | 3 | 4 | 1.0 |
|
86
86
|
|
87
87
|
```python
|
88
88
|
# Initialize the Dijkstra object
|
@@ -101,9 +101,9 @@ We get the shortest paths from the source node 0 to all other nodes in the graph
|
|
101
101
|
|
102
102
|
Edsger is designed to be **dataframe-friendly**, providing seamless integration with pandas workflows for graph algorithms. Also it is rather efficient. Our benchmarks on the USA road network (23.9M vertices, 57.7M edges) demonstrate nice performance:
|
103
103
|
|
104
|
-
<img src="docs/source/assets/dijkstra_benchmark_comparison.png" alt="Dijkstra Performance Comparison" width="700">
|
104
|
+
<img src="https://raw.githubusercontent.com/aetperf/edsger/release/docs/source/assets/dijkstra_benchmark_comparison.png" alt="Dijkstra Performance Comparison" width="700">
|
105
105
|
|
106
|
-
*Benchmark performed on Intel i9-12900H laptop.*
|
106
|
+
*Benchmark performed on Intel i9-12900H Linux laptop.*
|
107
107
|
|
108
108
|
## Contributing
|
109
109
|
|
@@ -1,33 +1,33 @@
|
|
1
|
-
edsger-0.1.
|
2
|
-
edsger-0.1.
|
3
|
-
edsger-0.1.
|
4
|
-
edsger-0.1.
|
5
|
-
edsger-0.1.
|
6
|
-
edsger-0.1.
|
1
|
+
edsger-0.1.3.dist-info/RECORD,,
|
2
|
+
edsger-0.1.3.dist-info/WHEEL,sha256=XDdnntmiCRXNVLdY5WCtwp2KApIYJ413gXaKlPbYNQ4,107
|
3
|
+
edsger-0.1.3.dist-info/top_level.txt,sha256=QvhzFORJIIot6GzSnDrtGa9KQt9iifCbOC5ULlzY5dg,7
|
4
|
+
edsger-0.1.3.dist-info/METADATA,sha256=VIl3bBYZofqpREwu1Z-vxagJXIR5rc7-62uslSQ6Yps,5196
|
5
|
+
edsger-0.1.3.dist-info/licenses/LICENSE,sha256=eNjfz5CInLrVdczJbhazCKtb8-0qB0UaXZ3bXN0zio0,1111
|
6
|
+
edsger-0.1.3.dist-info/licenses/AUTHORS.rst,sha256=9lqpqjiC4XukK7jdxXwKJJrddqwCV2DjpYTqhpP6znA,105
|
7
7
|
edsger/pq_4ary_dec_0b.cpython-39-darwin.so,sha256=sx1lpHLz1DORDUoJZyFSAI2A69gx2ukh4-JoJw4rsnw,214288
|
8
|
-
edsger/spiess_florian.c,sha256=
|
8
|
+
edsger/spiess_florian.c,sha256=17Kw4sz7lHCrvNqdXrC_PQnAZyzPhq8tFCFkUt2Rd60,1356767
|
9
9
|
edsger/star.cpython-39-darwin.so,sha256=Dm1dGR2IE0_2z8L8F6iGoQH9mwC_eaID8WOtMcE6N38,250856
|
10
|
-
edsger/dijkstra.c,sha256=
|
11
|
-
edsger/_version.py,sha256=
|
10
|
+
edsger/dijkstra.c,sha256=tqbEtPG_X8E7Wvrx-S3WTanRS9MOximtjZU0vVXCv64,1658395
|
11
|
+
edsger/_version.py,sha256=R5TtpJu7Qu6sOarfDpp-5Oyy8Pi2Ir3VewCvsCQiAgo,21
|
12
12
|
edsger/commons.cpython-39-darwin.so,sha256=7eEpHoASKIXL9k9vjqacbi5PGZyPxkU3ZYcoe18Oy9g,58320
|
13
|
-
edsger/commons.c,sha256=
|
14
|
-
edsger/star.c,sha256=
|
13
|
+
edsger/commons.c,sha256=TFJj6lA5LpheOok2qttHJwcy1ZCrsvFErgsbABnq-FI,344001
|
14
|
+
edsger/star.c,sha256=m3TQuSD4seyqQkMXuqCcB4bwprgvq_5I--QCt6Z5tIQ,1320065
|
15
15
|
edsger/commons.pyx,sha256=rPWrq1zfN_IuTgLgvvQe8ma7bU1e3V8lWbBEFH5Vaw8,805
|
16
16
|
edsger/pq_4ary_dec_0b.pxd,sha256=MbQuP1y1t6_2fJRkpqRPV2lmatwfqOxjsrb1GLfEudA,1065
|
17
17
|
edsger/__init__.py,sha256=CoqO_GHq5NC94S2JrYjf6dVGOKnxJ2TRBDOjikyscOY,40
|
18
18
|
edsger/prefetch_compat.h,sha256=6HfoyHI0dQE_MDsYHjUiX77Hg_z8eH6kRwN_5RAhbYo,806
|
19
|
-
edsger/path_tracking.c,sha256=
|
19
|
+
edsger/path_tracking.c,sha256=NdVUWAH5hJr6NubQFVnyQDVQNNXPaQEhO0YtnNzk0Ls,1144931
|
20
20
|
edsger/spiess_florian.pyx,sha256=9CrcMyzwSXaC_EdSl1uiD9yhFH6ACtooZOMfYw6vhvA,9566
|
21
|
-
edsger/pq_4ary_dec_0b.c,sha256=
|
21
|
+
edsger/pq_4ary_dec_0b.c,sha256=qBQPohQ5XXZPJJMzqyBOCVx2CkUNf2iBMFXFcyEYeqk,1368243
|
22
22
|
edsger/networks.py,sha256=o_dKC6fcxsqWr3fE0m5sUQkpZO-0B2x-w51l_1fyzAc,10316
|
23
23
|
edsger/spiess_florian.cpython-39-darwin.so,sha256=Hko2GDbjzGFLpG0HmefcpMfHto1q_gg38drvIdY4Z24,276432
|
24
24
|
edsger/commons.pxd,sha256=P9-n7ChbSIMSBRRY_lY3gBwXYUSvqJG-S_6e0dZTYU8,439
|
25
25
|
edsger/.gitignore,sha256=tWvEr3sBkY2ODntRp4_IUz3cidH-xu1efiOQK9DfK04,12
|
26
26
|
edsger/utils.py,sha256=igl2xDpkjTuQ5fhDdynQ0ekMSva52BstrTsZaTtE2RI,2034
|
27
27
|
edsger/pq_4ary_dec_0b.pyx,sha256=fRJCT79GsCocZgpostfn7t5nkNQALK0A93OJK4fxJR0,17796
|
28
|
-
edsger/dijkstra.cpython-39-darwin.so,sha256=
|
28
|
+
edsger/dijkstra.cpython-39-darwin.so,sha256=axuS7R8dp8-ACY24qhQ_a-X5ua27kdbi89MQdk8aL3o,367072
|
29
29
|
edsger/path_tracking.cpython-39-darwin.so,sha256=lwZh7ssWqVk3V6GGcDzM0xJS7hrBcfqXWj2kpGjzRj4,191648
|
30
30
|
edsger/path_tracking.pyx,sha256=uO06fzL8V5KeI3w5FPVJJ13ZtdFGTol6oUjVX4Jjxxs,1807
|
31
|
-
edsger/path.py,sha256=
|
32
|
-
edsger/dijkstra.pyx,sha256=
|
31
|
+
edsger/path.py,sha256=4hwoXiaepp_twwEQMmlygFsYy1HcxtZmR1HSvNStUC4,34874
|
32
|
+
edsger/dijkstra.pyx,sha256=R8DM9LlHXUOZ38t7qINaB1t_QBP_aeWBOqIHHVN9W10,36513
|
33
33
|
edsger/star.pyx,sha256=MVS4kylmMAXOHm8liTfTMLzrr0jhA3cRU3-KCfVjNNM,9246
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|