diff --git a/routing/dijkstra_router.cpp b/routing/dijkstra_router.cpp index 35d3914fea..ac0ccf8e0a 100644 --- a/routing/dijkstra_router.cpp +++ b/routing/dijkstra_router.cpp @@ -40,6 +40,15 @@ void ReconstructPath(RoadPos const & v, map const & parent, } } +struct Vertex +{ + Vertex(RoadPos const & pos, double dist) : pos(pos), dist(dist) {} + + bool operator<(Vertex const & v) const { return dist > v.dist; } + + RoadPos pos; + double dist; +}; } // namespace IRouter::ResultCode DijkstraRouter::CalculateRouteM2M(vector const & startPos, @@ -48,10 +57,10 @@ IRouter::ResultCode DijkstraRouter::CalculateRouteM2M(vector const & st { priority_queue queue; - // Upper bound on a distance from start positions to a position. + // Upper bound on the distance from start positions to current vertex. map dist; - // Parent in a search tree. + // Parent in the search tree. map parent; vector sortedStartFeatures(startPos.size()); @@ -87,6 +96,9 @@ IRouter::ResultCode DijkstraRouter::CalculateRouteM2M(vector const & st RoadPos const & pos = turn.m_pos; if (v.pos == pos) continue; + // TODO (@gorshenin): distance must be measured in time units, + // so it possibly worth to divide distance by the pedestrian's + // speed. double const d = v.dist + MercatorBounds::DistanceOnEarth(v.pos.GetSegEndpoint(), pos.GetSegEndpoint()); auto it = dist.find(pos); diff --git a/routing/dijkstra_router.hpp b/routing/dijkstra_router.hpp index 097c3300a8..2a08257c0c 100644 --- a/routing/dijkstra_router.hpp +++ b/routing/dijkstra_router.hpp @@ -19,16 +19,5 @@ public: // RoadGraphRouter overrides: ResultCode CalculateRouteM2M(vector const & startPos, vector const & finalPos, vector & route) override; - -private: - struct Vertex - { - Vertex(RoadPos const & pos, double dist) : pos(pos), dist(dist) {} - - bool operator<(Vertex const & v) const { return dist > v.dist; } - - RoadPos pos; - double dist; - }; }; } // namespace routing