From d6205d87b2c626a4fb2414d7c1746ada3467d79d Mon Sep 17 00:00:00 2001
From: Sadeep Madurange
Given such a graph, an algorithm like Dijkstra’s search could compute the -shortest path between two vertices. In fact, this was the algorithm the Neo4J -project shipped with at the time. One drawback of Dijkstra’s algorithm is that -it computes all the shortest paths from the source to all other vertices before +shortest path between two vertices. In fact, this was the algorithm Neo4J +shipped with at the time. One drawback of Dijkstra’s algorithm is that it +computes all the shortest paths from the source to all other vertices before terminating at the destination vertex. The exhaustive nature of this search limited our search to about 4,000 route points.
-- cgit v1.2.3