Skip to content

Commit e606b5f

Browse files
committed
readme
1 parent 2ada082 commit e606b5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Wikipedia.
1818

1919
# Usage Hints
2020

21-
Dijkstra's algorithm actually calculates the shortest path from the start node to every other node in the graph. This can let you cheaply do things like find the 20 closest nodes from a particular node in the graph.
21+
Dijkstra's algorithm actually calculates the shortest paths from the start node to every other node in the graph. In other words, it isn't just calculating one path at a time. This can let you cheaply do things like find the 20 closest nodes from a particular node in the graph, for example.
2222

2323
You can reverse the direction of the calculation. Calling it "start node" is just a convention. It can also be an end node if you set up the graph correctly.
2424

25-
This implementation supports cloning the solver and extending its graph dynamically. Graph generation can be expensive.. For many applications, most of the graph can be reused, with a only a small portion needing to be dynamic.
25+
This implementation supports cloning the solver and extending its graph dynamically. Graph generation can be expensive. For many applications, most of the graph can be reused, with a only a small portion needing to be dynamic.
2626

2727
# Example
2828

0 commit comments

Comments
 (0)