You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+26Lines changed: 26 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,6 +23,32 @@ var dijkstra = new Dijkstra<int, string>(graph);
23
23
DijkstraResultresult=dijkstra.Process(0, 1); //result contains the shortest path
24
24
result.GetPath();
25
25
```
26
+
## Benchmark
27
+
28
+
For Graph where number of vertices is 1 000 000 and number of edges is 10 000 000. Benchmark is available on the [benchmark](https://github.com/matiii/Dijkstra.NET/blob/benchmark/src/Dijkstra.NET/Dijkstra.NET.Benchmark/DijkstraBenchmark.cs) branch.
29
+
30
+
```c#
31
+
32
+
```
33
+
34
+
```ini
35
+
36
+
Host Process Environment Information:
37
+
BenchmarkDotNet.Core=v0.9.9.0
38
+
OS=Microsoft Windows NT 6.2.9200.0
39
+
Processor=Intel(R) Core(TM) i7-6820HQ CPU 2.70GHz, ProcessorCount=8
0 commit comments