From 34ed0224ed338825c9bdabb353ad1ddc52546b01 Mon Sep 17 00:00:00 2001 From: Lev Dragunov Date: Fri, 29 May 2015 15:12:46 +0300 Subject: [PATCH] PR fixes and AStar heuristic --- routing/base/astar_algorithm.hpp | 6 ++---- routing/cross_mwm_road_graph.cpp | 28 +++++++++++++++------------- routing/cross_mwm_road_graph.hpp | 11 +++-------- routing/cross_mwm_router.cpp | 2 +- routing/osrm_router.cpp | 9 ++++++--- routing/routing_mapping.cpp | 2 +- 6 files changed, 28 insertions(+), 30 deletions(-) diff --git a/routing/base/astar_algorithm.hpp b/routing/base/astar_algorithm.hpp index 36b9e23274..7ef702628d 100644 --- a/routing/base/astar_algorithm.hpp +++ b/routing/base/astar_algorithm.hpp @@ -381,18 +381,16 @@ void AStarAlgorithm::ReconstructPath(TVertexType const & v, vector & path) { path.clear(); - vector tmpPath; TVertexType cur = v; while (true) { - tmpPath.push_back(cur); + path.push_back(cur); auto it = parent.find(cur); if (it == parent.end()) break; cur = it->second; } - // Reverse path to proper order. - path.assign(tmpPath.rbegin(), tmpPath.rend()); + reverse(path.begin(), path.end()); } // static diff --git a/routing/cross_mwm_road_graph.cpp b/routing/cross_mwm_road_graph.cpp index e1740690b3..0350e34733 100644 --- a/routing/cross_mwm_road_graph.cpp +++ b/routing/cross_mwm_road_graph.cpp @@ -6,6 +6,7 @@ namespace { inline bool IsValidEdgeWeight(EdgeWeight const & w) { return w != INVALID_EDGE_WEIGHT; } double const kMwmCrossingNodeEqualityRadiusMeters = 1000.0; +double constexpr kMediumSpeedMPS = 120.0 * 1000.0 / (60 * 60); } namespace routing @@ -31,10 +32,10 @@ IRouter::ResultCode CrossMwmGraph::SetStartNode(CrossNode const & startNode) return IRouter::RouteNotFound; for (auto j = mwmOutsIter.first; j < mwmOutsIter.second; ++j) - targets.emplace_back(j->m_nodeId, false, startNode.mwmName); + targets.emplace_back(j->m_nodeId, false /* isStartNode */, startNode.mwmName); vector weights; - sources[0] = FeatureGraphNode(startNode.node, true, startNode.mwmName); + sources[0] = FeatureGraphNode(startNode.node, true /* isStartNode */, startNode.mwmName); FindWeightsMatrix(sources, targets, startMapping->m_dataFacade, weights); if (find_if(weights.begin(), weights.end(), &IsValidEdgeWeight) == weights.end()) return IRouter::StartPointNotFound; @@ -72,14 +73,14 @@ IRouter::ResultCode CrossMwmGraph::SetFinalNode(CrossNode const & finalNode) if (!ingoingSize) return IRouter::RouteNotFound; - for (auto j = mwmIngoingIter.first; j < mwmIngoingIter.second; ++j) - sources.emplace_back(j->m_nodeId, true, finalNode.mwmName); + for (auto j = mwmIngoingIter.first; j != mwmIngoingIter.second; ++j) + sources.emplace_back(j->m_nodeId, true /* isStartNode */, finalNode.mwmName); vector weights; - targets[0] = FeatureGraphNode(finalNode.node, false, finalNode.mwmName); + targets[0] = FeatureGraphNode(finalNode.node, false /* isStartNode */, finalNode.mwmName); FindWeightsMatrix(sources, targets, finalMapping->m_dataFacade, weights); if (find_if(weights.begin(), weights.end(), &IsValidEdgeWeight) == weights.end()) - return IRouter::StartPointNotFound; + return IRouter::EndPointNotFound; for (size_t i = 0; i < ingoingSize; ++i) { if (IsValidEdgeWeight(weights[i])) @@ -130,11 +131,7 @@ void CrossMwmGraph::GetOutgoingEdgesListImpl(TCrossPair const & v, auto const it = m_virtualEdges.find(v.second); if (it != m_virtualEdges.end()) { - for (auto const & a : it->second) - { - ASSERT(a.GetTarget().first.IsValid(), ()); - adj.push_back(a); - } + adj.insert(adj.end(), it->second.begin(), it->second.end()); return; } @@ -149,13 +146,13 @@ void CrossMwmGraph::GetOutgoingEdgesListImpl(TCrossPair const & v, // Find income node. auto iit = current_in_iterators.first; - while (iit < current_in_iterators.second) + while (iit != current_in_iterators.second) { if (iit->m_nodeId == v.second.node) break; ++iit; } - ASSERT(iit != current_in_iterators.second, ()); + CHECK(iit != current_in_iterators.second, ()); // Find outs. Generate adjacency list. for (auto oit = current_out_iterators.first; oit != current_out_iterators.second; ++oit) { @@ -169,4 +166,9 @@ void CrossMwmGraph::GetOutgoingEdgesListImpl(TCrossPair const & v, } } +double CrossMwmGraph::HeuristicCostEstimateImpl(const TCrossPair &v, const TCrossPair &w) const +{ + return ms::DistanceOnEarth(v.second.point.y, v.second.point.x, w.second.point.y, w.second.point.x) / kMediumSpeedMPS; +} + } // namespace routing diff --git a/routing/cross_mwm_road_graph.hpp b/routing/cross_mwm_road_graph.hpp index 6fbad5011a..1c017fb628 100644 --- a/routing/cross_mwm_road_graph.hpp +++ b/routing/cross_mwm_road_graph.hpp @@ -69,9 +69,8 @@ struct CrossWeightedEdge inline TCrossPair const & GetTarget() const { return target; } inline double GetWeight() const { return weight; } - CrossNode const source; - TCrossPair const target; - double const weight; + TCrossPair target; + double weight; }; /// A graph representation for cross mwm routing @@ -96,11 +95,7 @@ private: ASSERT(!"IMPL", ()); } - double HeuristicCostEstimateImpl(TCrossPair const & v, TCrossPair const & w) const - { - // TODO return some average values - return 0.0; - } + double HeuristicCostEstimateImpl(TCrossPair const & v, TCrossPair const & w) const; map > m_virtualEdges; mutable RoutingIndexManager m_indexManager; diff --git a/routing/cross_mwm_router.cpp b/routing/cross_mwm_router.cpp index 69c834398b..5ffc3ee967 100644 --- a/routing/cross_mwm_router.cpp +++ b/routing/cross_mwm_router.cpp @@ -6,7 +6,7 @@ namespace routing { using TAlgorithm = AStarAlgorithm; -/// Function to run AStar Algorythm from the base. +/// Function to run AStar Algorithm from the base. IRouter::ResultCode CalculateRoute(TCrossPair const & startPos, TCrossPair const & finalPos, CrossMwmGraph const & roadGraph, vector & route, RoutingVisualizerFn const & routingVisualizer) diff --git a/routing/osrm_router.cpp b/routing/osrm_router.cpp index 43e5c40db0..0b70fff85f 100644 --- a/routing/osrm_router.cpp +++ b/routing/osrm_router.cpp @@ -41,7 +41,7 @@ namespace routing { size_t const MAX_NODE_CANDIDATES = 10; -double const kFeatureFindingRectSideMeters = 1000.0; +double const kFeatureFindingRectSideRadius = 1000.0; double const TIME_OVERHEAD = 1.; double const FEATURES_NEAR_TURN_M = 3.0; @@ -377,7 +377,10 @@ public: CalculateOffsets(node); } - + res.erase(remove_if(res.begin(), + res.end(), + [](FeatureGraphNode const & f) {return f.mwmName.empty();}), + res.end()); } }; @@ -1051,7 +1054,7 @@ IRouter::ResultCode OsrmRouter::FindPhantomNodes(string const & fName, m2::Point getter.SetPoint(point); m_pIndex->ForEachInRectForMWM( - getter, MercatorBounds::RectByCenterXYAndSizeInMeters(point, kFeatureFindingRectSideMeters), + getter, MercatorBounds::RectByCenterXYAndSizeInMeters(point, kFeatureFindingRectSideRadius), scales::GetUpperScale(), mapping->GetMwmId()); if (!getter.HasCandidates()) diff --git a/routing/routing_mapping.cpp b/routing/routing_mapping.cpp index eeb019e83f..6366566237 100644 --- a/routing/routing_mapping.cpp +++ b/routing/routing_mapping.cpp @@ -120,7 +120,7 @@ TRoutingMappingPtr RoutingIndexManager::GetMappingByPoint(m2::PointD const & poi TRoutingMappingPtr RoutingIndexManager::GetMappingByName(string const & fName) { - // Check if we have already load this file + // Check if we have already loaded this file auto mapIter = m_mapping.find(fName); if (mapIter != m_mapping.end()) return mapIter->second;