Skip to content

Commit 08636c2

Browse files
committed
add comment and increment nuspec
1 parent 7716f78 commit 08636c2

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/Dijkstra.NET/Dijkstra.NET/Dijkstra.NET.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>Dijkstra.NET</id>
5-
<version>1.0.2</version>
5+
<version>1.0.3</version>
66
<authors>Mateusz Mazurek</authors>
77
<title>Dijkstra.NET</title>
88
<description>High performance the shortest path in directed graph with non negative weights algorithm implementation.</description>

src/Dijkstra.NET/Dijkstra.NET/Dijkstra.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@ public Dijkstra(IGraph<T, TEdgeCustom> graph)
1515
_graph = graph;
1616
}
1717

18+
/// <summary>
19+
/// Get path from @from to @to
20+
/// </summary>
21+
/// <param name="from">Start node</param>
22+
/// <param name="to">End node</param>
23+
/// <returns>Value with path</returns>
1824
public DijkstraResult Process(uint from, uint to)
1925
{
2026
var result = new DijkstraResult(from, to);

0 commit comments

Comments
 (0)