From 16e558f84b36741474a9a1036e818ee2bc223a44 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Fri, 5 Jul 2019 12:58:18 +0300 Subject: [PATCH] [routing] Review fixes. --- generator/transit_generator.cpp | 4 +--- openlr/graph.cpp | 2 +- routing/features_road_graph.cpp | 6 +++--- routing/nearest_edge_finder.cpp | 4 ++-- routing/nearest_edge_finder.hpp | 3 +-- routing/road_graph.cpp | 6 ------ routing/road_graph.hpp | 3 +-- routing/routing_benchmarks/helpers.cpp | 2 +- routing/routing_tests/road_graph_builder.hpp | 1 - 9 files changed, 10 insertions(+), 21 deletions(-) diff --git a/generator/transit_generator.cpp b/generator/transit_generator.cpp index ecdfbb9898..e4dd158834 100644 --- a/generator/transit_generator.cpp +++ b/generator/transit_generator.cpp @@ -128,16 +128,14 @@ void CalculateBestPedestrianSegments(string const & mwmPath, CountryId const & c // Looking for the edge which is the closest to |gate.GetPoint()|. // @TODO It should be considered to change the format of transit section to keep all // candidates for every gate. - auto const bestEdgeIt = min_element( + auto const & bestEdge = *min_element( bestEdges.cbegin(), bestEdges.cend(), [&bestEdgeComparator](routing::Edge const & lhs, routing::Edge const & rhs) { return bestEdgeComparator.Compare(lhs, rhs) < 0; }); - auto const & bestEdge = *bestEdgeIt; CHECK(bestEdge.GetFeatureId().IsValid(), ()); - graphData.SetGateBestPedestrianSegment(i, SingleMwmSegment( bestEdge.GetFeatureId().m_index, bestEdge.GetSegId(), bestEdge.IsForward())); } diff --git a/openlr/graph.cpp b/openlr/graph.cpp index e83c30e77e..0f83f232c1 100644 --- a/openlr/graph.cpp +++ b/openlr/graph.cpp @@ -68,7 +68,7 @@ void Graph::FindClosestEdges(m2::PointD const & point, uint32_t const count, { m_graph.FindClosestEdges( MercatorBounds::RectByCenterXYAndSizeInMeters(point, FeaturesRoadGraph::kClosestEdgesRadiusM), - count, nullptr, vicinities); + count, nullptr /* isGoodFeature */, vicinities); } void Graph::AddIngoingFakeEdge(Edge const & e) diff --git a/routing/features_road_graph.cpp b/routing/features_road_graph.cpp index e66f462505..d72f0a79b6 100644 --- a/routing/features_road_graph.cpp +++ b/routing/features_road_graph.cpp @@ -134,7 +134,7 @@ public: if (!m_graph.IsRoad(ft)) return; - FeatureID const featureId = ft.GetID(); + FeatureID const & featureId = ft.GetID(); IRoadGraph::RoadInfo const & roadInfo = m_graph.GetCachedRoadInfo(featureId, ft, kInvalidSpeedKMPH); @@ -184,7 +184,7 @@ void FeaturesRoadGraph::FindClosestEdges(m2::RectD const & rect, uint32_t count, if (!m_vehicleModel.IsRoad(ft)) return; - FeatureID const featureId = ft.GetID(); + FeatureID const & featureId = ft.GetID(); if (isGoodFeature && !isGoodFeature(featureId)) return; @@ -207,7 +207,7 @@ vector> FeaturesRoadGraph::FindRoads( if (!m_vehicleModel.IsRoad(ft)) return; - FeatureID const featureId = ft.GetID(); + FeatureID const & featureId = ft.GetID(); if (isGoodFeature && !isGoodFeature(featureId)) return; diff --git a/routing/nearest_edge_finder.cpp b/routing/nearest_edge_finder.cpp index e0f929222a..beb415cff4 100644 --- a/routing/nearest_edge_finder.cpp +++ b/routing/nearest_edge_finder.cpp @@ -77,14 +77,14 @@ void NearestEdgeFinder::AddInformationSource(FeatureID const & featureId, ASSERT_NOT_EQUAL(res.m_segEnd.GetAltitude(), feature::kInvalidAltitude, ()); res.m_projPoint = Junction(closestPoint, projPointAlt); - m_candidates.push_back(res); + m_candidates.emplace_back(res); } void NearestEdgeFinder::MakeResult(vector> & res, size_t maxCountFeatures) { sort(m_candidates.begin(), m_candidates.end(), [](Candidate const & r1, Candidate const & r2) { - return (r1.m_squaredDist < r2.m_squaredDist); + return r1.m_squaredDist < r2.m_squaredDist; }); res.clear(); diff --git a/routing/nearest_edge_finder.hpp b/routing/nearest_edge_finder.hpp index 85f2a7ee69..41d4b867d7 100644 --- a/routing/nearest_edge_finder.hpp +++ b/routing/nearest_edge_finder.hpp @@ -13,7 +13,6 @@ #include #include #include -#include #include #include @@ -26,7 +25,7 @@ class NearestEdgeFinder { struct Candidate { - static uint32_t constexpr kInvalidSegmentId = std::numeric_limits::max(); + static auto constexpr kInvalidSegmentId = std::numeric_limits::max(); double m_squaredDist = std::numeric_limits::max(); uint32_t m_segId = kInvalidSegmentId; diff --git a/routing/road_graph.cpp b/routing/road_graph.cpp index 2e7e6c2cc6..74d8272de2 100644 --- a/routing/road_graph.cpp +++ b/routing/road_graph.cpp @@ -304,12 +304,6 @@ double IRoadGraph::GetSpeedKMpH(Edge const & edge, SpeedParams const & speedPara return speedKMpH; } -vector> IRoadGraph::FindRoads( - m2::RectD const & rect, IsGoodFeatureFn const & isGoodFeature) const -{ - return {}; -} - void IRoadGraph::GetEdgeTypes(Edge const & edge, feature::TypesHolder & types) const { if (edge.IsFake()) diff --git a/routing/road_graph.hpp b/routing/road_graph.hpp index 8f43598b83..11ebfa9367 100644 --- a/routing/road_graph.hpp +++ b/routing/road_graph.hpp @@ -16,7 +16,6 @@ #include #include #include -#include #include #include @@ -320,7 +319,7 @@ public: /// \note |RoadInfo::m_speedKMPH| is set to |kInvalidSpeedKMPH|. /// \note Some roads returned by this method my lie outside |rect| but close to it. virtual std::vector> FindRoads( - m2::RectD const & rect, IsGoodFeatureFn const & isGoodFeature) const; + m2::RectD const & rect, IsGoodFeatureFn const & isGoodFeature) const { return {}; } /// @return Types for the specified feature virtual void GetFeatureTypes(FeatureID const & featureId, feature::TypesHolder & types) const = 0; diff --git a/routing/routing_benchmarks/helpers.cpp b/routing/routing_benchmarks/helpers.cpp index c0226bbdda..008e344051 100644 --- a/routing/routing_benchmarks/helpers.cpp +++ b/routing/routing_benchmarks/helpers.cpp @@ -142,7 +142,7 @@ void RoutingTest::GetNearestEdges(m2::PointD const & pt, routing::FeaturesRoadGraph graph(m_dataSource, m_mode, CreateModelFactory()); graph.FindClosestEdges(MercatorBounds::RectByCenterXYAndSizeInMeters( pt, routing::FeaturesRoadGraph::kClosestEdgesRadiusM), - 1 /* count */, nullptr, edges); + 1 /* count */, nullptr /* isGood */, edges); } void TestRouter(routing::IRouter & router, m2::PointD const & startPos, diff --git a/routing/routing_tests/road_graph_builder.hpp b/routing/routing_tests/road_graph_builder.hpp index 6a24eda441..12fe8663ef 100644 --- a/routing/routing_tests/road_graph_builder.hpp +++ b/routing/routing_tests/road_graph_builder.hpp @@ -5,7 +5,6 @@ #include "routing_common/maxspeed_conversion.hpp" #include "routing_common/vehicle_model.hpp" -#include #include #include