From 080e975576f72666f3fd30c498fbc064bef88065 Mon Sep 17 00:00:00 2001 From: Vladimir Byko-Ianko Date: Mon, 9 Sep 2019 10:51:26 +0300 Subject: [PATCH] [routing] Posibility to use different off road speed for weight and ETA. --- routing/edge_estimator.cpp | 60 ++++++++----------- routing/edge_estimator.hpp | 15 +++-- routing/features_road_graph.cpp | 2 +- routing/features_road_graph.hpp | 4 +- routing/index_graph.cpp | 14 ++--- routing/index_graph.hpp | 3 - routing/index_graph_starter.cpp | 24 ++++---- routing/index_graph_starter.hpp | 2 +- routing/index_router.cpp | 5 +- routing/routing_tests/index_graph_test.cpp | 4 +- routing/routing_tests/index_graph_tools.cpp | 3 +- routing/routing_tests/index_graph_tools.hpp | 5 +- routing/single_vehicle_world_graph.cpp | 15 +++-- routing/single_vehicle_world_graph.hpp | 5 +- routing/transit_graph.cpp | 8 ++- routing/transit_graph.hpp | 2 +- routing/transit_world_graph.cpp | 28 +++++---- routing/transit_world_graph.hpp | 5 +- routing/world_graph.hpp | 7 ++- routing_common/bicycle_model.cpp | 6 +- routing_common/bicycle_model.hpp | 2 +- routing_common/car_model.cpp | 4 +- routing_common/car_model.hpp | 2 +- routing_common/pedestrian_model.cpp | 4 +- routing_common/pedestrian_model.hpp | 2 +- .../vehicle_model_test.cpp | 2 +- routing_common/vehicle_model.hpp | 4 +- track_analyzing/track_analyzer/cmd_tracks.cpp | 3 +- 28 files changed, 124 insertions(+), 116 deletions(-) diff --git a/routing/edge_estimator.cpp b/routing/edge_estimator.cpp index 5d002b4d6b..76cf9ccabe 100644 --- a/routing/edge_estimator.cpp +++ b/routing/edge_estimator.cpp @@ -96,11 +96,13 @@ double CalcClimbSegment(EdgeEstimator::Purpose purpose, Segment const & segment, namespace routing { // EdgeEstimator ----------------------------------------------------------------------------------- -EdgeEstimator::EdgeEstimator(double maxWeightSpeedKMpH, double offroadSpeedKMpH) - : m_maxWeightSpeedMpS(KMPH2MPS(maxWeightSpeedKMpH)), m_offroadSpeedMpS(KMPH2MPS(offroadSpeedKMpH)) +EdgeEstimator::EdgeEstimator(double maxWeightSpeedKMpH, SpeedKMpH const & offroadSpeedKMpH) + : m_maxWeightSpeedMpS(KMPH2MPS(maxWeightSpeedKMpH)), m_offroadSpeedKMpH(offroadSpeedKMpH) { - CHECK_GREATER(m_offroadSpeedMpS, 0.0, ()); - CHECK_GREATER_OR_EQUAL(m_maxWeightSpeedMpS, m_offroadSpeedMpS, ()); + CHECK_GREATER(m_offroadSpeedKMpH.m_weight, 0.0, ()); + CHECK_GREATER(m_offroadSpeedKMpH.m_eta, 0.0, ()); + CHECK_GREATER_OR_EQUAL(m_maxWeightSpeedMpS, KMPH2MPS(m_offroadSpeedKMpH.m_weight), ()); + CHECK_GREATER_OR_EQUAL(m_maxWeightSpeedMpS, KMPH2MPS(m_offroadSpeedKMpH.m_eta), ()); } double EdgeEstimator::CalcHeuristic(m2::PointD const & from, m2::PointD const & to) const @@ -117,16 +119,18 @@ double EdgeEstimator::CalcLeapWeight(m2::PointD const & from, m2::PointD const & return TimeBetweenSec(from, to, m_maxWeightSpeedMpS / 2.0); } -double EdgeEstimator::CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to) const +double EdgeEstimator::CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to, Purpose purpose) const { - return TimeBetweenSec(from, to, m_offroadSpeedMpS); + return TimeBetweenSec(from, to, + KMPH2MPS(purpose == Purpose::Weight ? m_offroadSpeedKMpH.m_weight + : m_offroadSpeedKMpH.m_eta)); } // PedestrianEstimator ----------------------------------------------------------------------------- class PedestrianEstimator final : public EdgeEstimator { public: - PedestrianEstimator(double maxWeightSpeedKMpH, double offroadSpeedKMpH) + PedestrianEstimator(double maxWeightSpeedKMpH, SpeedKMpH const & offroadSpeedKMpH) : EdgeEstimator(maxWeightSpeedKMpH, offroadSpeedKMpH) { } @@ -144,14 +148,10 @@ public: UNREACHABLE(); } - double CalcSegmentWeight(Segment const & segment, RoadGeometry const & road) const override + double CalcSegmentWeight(Segment const & segment, RoadGeometry const & road, + Purpose purpose) const override { - return CalcClimbSegment(Purpose::Weight, segment, road, GetPedestrianClimbPenalty); - } - - double CalcSegmentETA(Segment const & segment, RoadGeometry const & road) const override - { - return CalcClimbSegment(Purpose::ETA, segment, road, GetPedestrianClimbPenalty); + return CalcClimbSegment(purpose, segment, road, GetPedestrianClimbPenalty); } }; @@ -159,7 +159,7 @@ public: class BicycleEstimator final : public EdgeEstimator { public: - BicycleEstimator(double maxWeightSpeedKMpH, double offroadSpeedKMpH) + BicycleEstimator(double maxWeightSpeedKMpH, SpeedKMpH const & offroadSpeedKMpH) : EdgeEstimator(maxWeightSpeedKMpH, offroadSpeedKMpH) { } @@ -177,14 +177,10 @@ public: UNREACHABLE(); } - double CalcSegmentWeight(Segment const & segment, RoadGeometry const & road) const override + double CalcSegmentWeight(Segment const & segment, RoadGeometry const & road, + Purpose purpose) const override { - return CalcClimbSegment(Purpose::Weight, segment, road, GetBicycleClimbPenalty); - } - - double CalcSegmentETA(Segment const & segment, RoadGeometry const & road) const override - { - return CalcClimbSegment(Purpose::ETA, segment, road, GetBicycleClimbPenalty); + return CalcClimbSegment(purpose, segment, road, GetBicycleClimbPenalty); } }; @@ -193,11 +189,11 @@ class CarEstimator final : public EdgeEstimator { public: CarEstimator(shared_ptr trafficStash, double maxWeightSpeedKMpH, - double offroadSpeedKMpH); + SpeedKMpH const & offroadSpeedKMpH); // EdgeEstimator overrides: - double CalcSegmentWeight(Segment const & segment, RoadGeometry const & road) const override; - double CalcSegmentETA(Segment const & segment, RoadGeometry const & road) const override; + double CalcSegmentWeight(Segment const & segment, RoadGeometry const & road, + Purpose purpose) const override; double GetUTurnPenalty(Purpose /* purpose */) const override; double GetFerryLandingPenalty(Purpose purpose) const override; @@ -207,19 +203,15 @@ private: }; CarEstimator::CarEstimator(shared_ptr trafficStash, double maxWeightSpeedKMpH, - double offroadSpeedKMpH) + SpeedKMpH const & offroadSpeedKMpH) : EdgeEstimator(maxWeightSpeedKMpH, offroadSpeedKMpH), m_trafficStash(move(trafficStash)) { } -double CarEstimator::CalcSegmentWeight(Segment const & segment, RoadGeometry const & road) const +double CarEstimator::CalcSegmentWeight(Segment const & segment, RoadGeometry const & road, + Purpose purpose) const { - return CalcSegment(Purpose::Weight, segment, road); -} - -double CarEstimator::CalcSegmentETA(Segment const & segment, RoadGeometry const & road) const -{ - return CalcSegment(Purpose::ETA, segment, road); + return CalcSegment(purpose, segment, road); } double CarEstimator::GetUTurnPenalty(Purpose /* purpose */) const @@ -268,7 +260,7 @@ double CarEstimator::CalcSegment(Purpose purpose, Segment const & segment, RoadG // EdgeEstimator ----------------------------------------------------------------------------------- // static shared_ptr EdgeEstimator::Create(VehicleType vehicleType, double maxWeighSpeedKMpH, - double offroadSpeedKMpH, + SpeedKMpH const & offroadSpeedKMpH, shared_ptr trafficStash) { switch (vehicleType) diff --git a/routing/edge_estimator.hpp b/routing/edge_estimator.hpp index 524a8d7179..28556415e5 100644 --- a/routing/edge_estimator.hpp +++ b/routing/edge_estimator.hpp @@ -27,7 +27,7 @@ public: ETA }; - EdgeEstimator(double maxWeightSpeedKMpH, double offroadSpeedKMpH); + EdgeEstimator(double maxWeightSpeedKMpH, SpeedKMpH const & offroadSpeedKMpH); virtual ~EdgeEstimator() = default; double CalcHeuristic(m2::PointD const & from, m2::PointD const & to) const; @@ -39,17 +39,16 @@ public: // Note 3. It's assumed here that CalcLeapWeight(p1, p2) == CalcLeapWeight(p2, p1). double CalcLeapWeight(m2::PointD const & from, m2::PointD const & to) const; - // Estimates time in seconds it takes to go from point |from| to point |to| along direct fake - // edge. - double CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to) const; + // Estimates time in seconds it takes to go from point |from| to point |to| along direct fake edge. + double CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to, Purpose purpose) const; - virtual double CalcSegmentWeight(Segment const & segment, RoadGeometry const & road) const = 0; - virtual double CalcSegmentETA(Segment const & segment, RoadGeometry const & road) const = 0; + virtual double CalcSegmentWeight(Segment const & segment, RoadGeometry const & road, + Purpose purpose) const = 0; virtual double GetUTurnPenalty(Purpose purpose) const = 0; virtual double GetFerryLandingPenalty(Purpose purpose) const = 0; static std::shared_ptr Create(VehicleType vehicleType, double maxWeighSpeedKMpH, - double offroadSpeedKMpH, + SpeedKMpH const & offroadSpeedKMpH, std::shared_ptr); static std::shared_ptr Create(VehicleType vehicleType, @@ -58,6 +57,6 @@ public: private: double const m_maxWeightSpeedMpS; - double const m_offroadSpeedMpS; + SpeedKMpH const m_offroadSpeedKMpH; }; } // namespace routing diff --git a/routing/features_road_graph.cpp b/routing/features_road_graph.cpp index 09be213c8e..2f2828feb3 100644 --- a/routing/features_road_graph.cpp +++ b/routing/features_road_graph.cpp @@ -61,7 +61,7 @@ HighwayType FeaturesRoadGraph::CrossCountryVehicleModel::GetHighwayType(FeatureT return GetVehicleModel(f.GetID())->GetHighwayType(f); } -double FeaturesRoadGraph::CrossCountryVehicleModel::GetOffroadSpeed() const +SpeedKMpH FeaturesRoadGraph::CrossCountryVehicleModel::GetOffroadSpeed() const { return m_offroadSpeedKMpH; } diff --git a/routing/features_road_graph.hpp b/routing/features_road_graph.hpp index 4405822a76..a97b3ce346 100644 --- a/routing/features_road_graph.hpp +++ b/routing/features_road_graph.hpp @@ -37,7 +37,7 @@ private: SpeedKMpH GetSpeed(FeatureType & f, SpeedParams const & speedParams) const override; HighwayType GetHighwayType(FeatureType & f) const override; double GetMaxWeightSpeed() const override { return m_maxSpeed; }; - double GetOffroadSpeed() const override; + SpeedKMpH GetOffroadSpeed() const override; bool IsOneWay(FeatureType & f) const override; bool IsRoad(FeatureType & f) const override; bool IsPassThroughAllowed(FeatureType & f) const override; @@ -49,7 +49,7 @@ private: std::shared_ptr const m_vehicleModelFactory; double const m_maxSpeed; - double const m_offroadSpeedKMpH; + SpeedKMpH const m_offroadSpeedKMpH; mutable std::map> m_cache; }; diff --git a/routing/index_graph.cpp b/routing/index_graph.cpp index 03c3d89058..3856cb9944 100644 --- a/routing/index_graph.cpp +++ b/routing/index_graph.cpp @@ -204,12 +204,6 @@ void IndexGraph::SetUTurnRestrictions(vector && noUTurnRestric void IndexGraph::SetRoadAccess(RoadAccess && roadAccess) { m_roadAccess = move(roadAccess); } -RouteWeight IndexGraph::CalcSegmentWeight(Segment const & segment) -{ - return RouteWeight( - m_estimator->CalcSegmentWeight(segment, m_geometry->GetRoad(segment.GetFeatureId()))); -} - void IndexGraph::GetNeighboringEdges(Segment const & from, RoadPoint const & rp, bool isOutgoing, bool useRoutingOptions, vector & edges, map & parents) @@ -466,8 +460,12 @@ RouteWeight IndexGraph::CalculateEdgeWeight(EdgeEstimator::Purpose purpose, bool auto const & road = m_geometry->GetRoad(segment.GetFeatureId()); switch (purpose) { - case EdgeEstimator::Purpose::Weight: return RouteWeight(m_estimator->CalcSegmentWeight(segment, road)); - case EdgeEstimator::Purpose::ETA: return RouteWeight(m_estimator->CalcSegmentETA(segment, road)); + case EdgeEstimator::Purpose::Weight: + return RouteWeight( + m_estimator->CalcSegmentWeight(segment, road, EdgeEstimator::Purpose::Weight)); + case EdgeEstimator::Purpose::ETA: + return RouteWeight( + m_estimator->CalcSegmentWeight(segment, road, EdgeEstimator::Purpose::ETA)); } UNREACHABLE(); }; diff --git a/routing/index_graph.hpp b/routing/index_graph.hpp index 2e772325e6..c97d99e8c3 100644 --- a/routing/index_graph.hpp +++ b/routing/index_graph.hpp @@ -121,9 +121,6 @@ public: Segment const & from, Segment const & to); private: - - RouteWeight CalcSegmentWeight(Segment const & segment); - void GetNeighboringEdges(Segment const & from, RoadPoint const & rp, bool isOutgoing, bool useRoutingOptions, std::vector & edges, std::map & parents); diff --git a/routing/index_graph_starter.cpp b/routing/index_graph_starter.cpp index 5199806e27..02cb8a6d34 100644 --- a/routing/index_graph_starter.cpp +++ b/routing/index_graph_starter.cpp @@ -232,7 +232,7 @@ void IndexGraphStarter::GetEdgesList(Segment const & segment, bool isOutgoing, } for (auto const & s : m_fake.GetEdges(segment, isOutgoing)) - edges.emplace_back(s, CalcSegmentWeight(isOutgoing ? s : segment)); + edges.emplace_back(s, CalcSegmentWeight(isOutgoing ? s : segment, EdgeEstimator::Purpose::Weight)); } else { @@ -242,11 +242,12 @@ void IndexGraphStarter::GetEdgesList(Segment const & segment, bool isOutgoing, AddFakeEdges(segment, isOutgoing, edges); } -RouteWeight IndexGraphStarter::CalcSegmentWeight(Segment const & segment) const +RouteWeight IndexGraphStarter::CalcSegmentWeight(Segment const & segment, + EdgeEstimator::Purpose purpose) const { if (!IsFakeSegment(segment)) { - return m_graph.CalcSegmentWeight(segment); + return m_graph.CalcSegmentWeight(segment, purpose); } auto const & vertex = m_fake.GetVertex(segment); @@ -257,24 +258,24 @@ RouteWeight IndexGraphStarter::CalcSegmentWeight(Segment const & segment) const auto const fullLen = MercatorBounds::DistanceOnEarth(GetPoint(real, false /* front */), GetPoint(real, true /* front */)); // Note 1. |fullLen| == 0.0 in case of Segment(s) with the same ends. - // Note 2. There is the following logic behind |return 0.0 * m_graph.CalcSegmentWeight(real);|: - // it's necessary to return a intance of the structure |RouteWeight| with zero wight. + // Note 2. There is the following logic behind |return 0.0 * m_graph.CalcSegmentWeight(real, ...);|: + // it's necessary to return a instance of the structure |RouteWeight| with zero wight. // Theoretically it may be differ from |RouteWeight(0)| because some road access block // may be kept in it and it is up to |RouteWeight| to know how to multiply by zero. if (fullLen == 0.0) - return 0.0 * m_graph.CalcSegmentWeight(real); + return 0.0 * m_graph.CalcSegmentWeight(real, purpose); - return (partLen / fullLen) * m_graph.CalcSegmentWeight(real); + return (partLen / fullLen) * m_graph.CalcSegmentWeight(real, purpose); } - return m_graph.CalcOffroadWeight(vertex.GetPointFrom(), vertex.GetPointTo()); + return m_graph.CalcOffroadWeight(vertex.GetPointFrom(), vertex.GetPointTo(), purpose); } double IndexGraphStarter::CalculateETA(Segment const & from, Segment const & to) const { // We don't distinguish fake segment weight and fake segment transit time. if (IsFakeSegment(to)) - return CalcSegmentWeight(to).GetWeight(); + return CalcSegmentWeight(to, EdgeEstimator::Purpose::ETA).GetWeight(); if (IsFakeSegment(from)) return CalculateETAWithoutPenalty(to); @@ -285,7 +286,7 @@ double IndexGraphStarter::CalculateETA(Segment const & from, Segment const & to) double IndexGraphStarter::CalculateETAWithoutPenalty(Segment const & segment) const { if (IsFakeSegment(segment)) - return CalcSegmentWeight(segment).GetWeight(); + return CalcSegmentWeight(segment, EdgeEstimator::Purpose::ETA).GetWeight(); return m_graph.CalculateETAWithoutPenalty(segment); } @@ -404,7 +405,8 @@ void IndexGraphStarter::AddFakeEdges(Segment const & segment, bool isOutgoing, v { // For ingoing edges we use source weight which is the same for |s| and for |edge| and is // already calculated. - fakeEdges.emplace_back(s, isOutgoing ? CalcSegmentWeight(s) : edge.GetWeight()); + fakeEdges.emplace_back(s, isOutgoing ? CalcSegmentWeight(s, EdgeEstimator::Purpose::Weight) + : edge.GetWeight()); } } } diff --git a/routing/index_graph_starter.hpp b/routing/index_graph_starter.hpp index fcbfe3d89e..e10babd939 100644 --- a/routing/index_graph_starter.hpp +++ b/routing/index_graph_starter.hpp @@ -134,7 +134,7 @@ public: return m_graph.HeuristicCostEstimate(GetPoint(from, true /* front */), to); } - RouteWeight CalcSegmentWeight(Segment const & segment) const; + RouteWeight CalcSegmentWeight(Segment const & segment, EdgeEstimator::Purpose purpose) const; double CalculateETA(Segment const & from, Segment const & to) const; double CalculateETAWithoutPenalty(Segment const & segment) const; diff --git a/routing/index_router.cpp b/routing/index_router.cpp index 3c9ba846ae..07c4fbe85a 100644 --- a/routing/index_router.cpp +++ b/routing/index_router.cpp @@ -92,7 +92,7 @@ double CalcMaxSpeed(NumMwmIds const & numMwmIds, return maxSpeed; } -double CalcOffroadSpeed(VehicleModelFactoryInterface const & vehicleModelFactory) +SpeedKMpH CalcOffroadSpeed(VehicleModelFactoryInterface const & vehicleModelFactory) { return vehicleModelFactory.GetVehicleModel()->GetOffroadSpeed(); } @@ -724,7 +724,8 @@ RouterResultCode IndexRouter::AdjustRoute(Checkpoints const & checkpoints, for (size_t i = lastSubroute.GetBeginSegmentIdx(); i < lastSubroute.GetEndSegmentIdx(); ++i) { auto const & step = steps[i]; - prevEdges.emplace_back(step.GetSegment(), starter.CalcSegmentWeight(step.GetSegment())); + prevEdges.emplace_back(step.GetSegment(), starter.CalcSegmentWeight(step.GetSegment(), + EdgeEstimator::Purpose::Weight)); } uint32_t visitCount = 0; diff --git a/routing/routing_tests/index_graph_test.cpp b/routing/routing_tests/index_graph_test.cpp index a4a560fd61..95e0995c1c 100644 --- a/routing/routing_tests/index_graph_test.cpp +++ b/routing/routing_tests/index_graph_test.cpp @@ -545,9 +545,9 @@ UNIT_TEST(FakeEndingAStarInvariant) auto const finish = MakeFakeEnding(0, 0, m2::PointD(2.0, 1.0), *worldGraph); auto const expectedWeight = - estimator->CalcOffroadWeight({1.0, 1.0}, {1.0, 0.0}) + + estimator->CalcOffroadWeight({1.0, 1.0}, {1.0, 0.0}, EdgeEstimator::Purpose::Weight) + MercatorBounds::DistanceOnEarth({1.0, 0.0}, {2.0, 0.0}) / KMPH2MPS(1.0) + - estimator->CalcOffroadWeight({2.0, 0.0}, {2.0, 1.0}); + estimator->CalcOffroadWeight({2.0, 0.0}, {2.0, 1.0}, EdgeEstimator::Purpose::Weight); TestRoute(start, finish, expectedRoute.size(), &expectedRoute, expectedWeight, *worldGraph); } diff --git a/routing/routing_tests/index_graph_tools.cpp b/routing/routing_tests/index_graph_tools.cpp index b88c0e1715..dc141807d6 100644 --- a/routing/routing_tests/index_graph_tools.cpp +++ b/routing/routing_tests/index_graph_tools.cpp @@ -139,7 +139,8 @@ void TestTransitGraphLoader::AddGraph(NumMwmId mwmId, unique_ptr g // WeightedEdgeEstimator -------------------------------------------------------------- double WeightedEdgeEstimator::CalcSegmentWeight(Segment const & segment, - RoadGeometry const & /* road */) const + RoadGeometry const & /* road */, + EdgeEstimator::Purpose /* purpose */) const { auto const it = m_segmentWeights.find(segment); CHECK(it != m_segmentWeights.cend(), ()); diff --git a/routing/routing_tests/index_graph_tools.hpp b/routing/routing_tests/index_graph_tools.hpp index 2b854e3af9..89e54cd23f 100644 --- a/routing/routing_tests/index_graph_tools.hpp +++ b/routing/routing_tests/index_graph_tools.hpp @@ -171,8 +171,9 @@ public: // EdgeEstimator overrides: ~WeightedEdgeEstimator() override = default; - double CalcSegmentWeight(Segment const & segment, RoadGeometry const & /* road */) const override; - double CalcSegmentETA(Segment const & segment, RoadGeometry const & road) const override { return 0.0; } + double CalcSegmentWeight(Segment const & segment, RoadGeometry const & /* road */, + EdgeEstimator::Purpose purpose) const override; + double GetUTurnPenalty(Purpose purpose) const override; double GetFerryLandingPenalty(Purpose purpose) const override; diff --git a/routing/single_vehicle_world_graph.cpp b/routing/single_vehicle_world_graph.cpp index 637a9e7e4c..d670b515f6 100644 --- a/routing/single_vehicle_world_graph.cpp +++ b/routing/single_vehicle_world_graph.cpp @@ -174,10 +174,11 @@ RouteWeight SingleVehicleWorldGraph::HeuristicCostEstimate(m2::PointD const & fr return RouteWeight(m_estimator->CalcHeuristic(from, to)); } -RouteWeight SingleVehicleWorldGraph::CalcSegmentWeight(Segment const & segment) +RouteWeight SingleVehicleWorldGraph::CalcSegmentWeight(Segment const & segment, + EdgeEstimator::Purpose purpose) { return RouteWeight(m_estimator->CalcSegmentWeight( - segment, GetRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()))); + segment, GetRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()), purpose)); } RouteWeight SingleVehicleWorldGraph::CalcLeapWeight(m2::PointD const & from, @@ -187,9 +188,10 @@ RouteWeight SingleVehicleWorldGraph::CalcLeapWeight(m2::PointD const & from, } RouteWeight SingleVehicleWorldGraph::CalcOffroadWeight(m2::PointD const & from, - m2::PointD const & to) const + m2::PointD const & to, + EdgeEstimator::Purpose purpose) const { - return RouteWeight(m_estimator->CalcOffroadWeight(from, to)); + return RouteWeight(m_estimator->CalcOffroadWeight(from, to, purpose)); } double SingleVehicleWorldGraph::CalculateETA(Segment const & from, Segment const & to) @@ -203,8 +205,9 @@ double SingleVehicleWorldGraph::CalculateETA(Segment const & from, Segment const double SingleVehicleWorldGraph::CalculateETAWithoutPenalty(Segment const & segment) { - return m_estimator->CalcSegmentETA(segment, - GetRoadGeometry(segment.GetMwmId(), segment.GetFeatureId())); + return m_estimator->CalcSegmentWeight(segment, + GetRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()), + EdgeEstimator::Purpose::ETA); } vector const & SingleVehicleWorldGraph::GetTransitions(NumMwmId numMwmId, bool isEnter) diff --git a/routing/single_vehicle_world_graph.hpp b/routing/single_vehicle_world_graph.hpp index 3f50a8723f..c6854afdd6 100644 --- a/routing/single_vehicle_world_graph.hpp +++ b/routing/single_vehicle_world_graph.hpp @@ -59,9 +59,10 @@ public: RouteWeight HeuristicCostEstimate(m2::PointD const & from, m2::PointD const & to) override; RouteWeight HeuristicCostEstimate(Segment const & from, m2::PointD const & to) override; - RouteWeight CalcSegmentWeight(Segment const & segment) override; + RouteWeight CalcSegmentWeight(Segment const & segment, EdgeEstimator::Purpose purpose) override; RouteWeight CalcLeapWeight(m2::PointD const & from, m2::PointD const & to) const override; - RouteWeight CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to) const override; + RouteWeight CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to, + EdgeEstimator::Purpose purpose) const override; double CalculateETA(Segment const & from, Segment const & to) override; double CalculateETAWithoutPenalty(Segment const & segment) override; diff --git a/routing/transit_graph.cpp b/routing/transit_graph.cpp index 63f013dd81..80e91460cb 100644 --- a/routing/transit_graph.cpp +++ b/routing/transit_graph.cpp @@ -50,7 +50,8 @@ Junction const & TransitGraph::GetJunction(Segment const & segment, bool front) return front ? vertex.GetJunctionTo() : vertex.GetJunctionFrom(); } -RouteWeight TransitGraph::CalcSegmentWeight(Segment const & segment) const +RouteWeight TransitGraph::CalcSegmentWeight(Segment const & segment, + EdgeEstimator::Purpose purpose) const { CHECK(IsTransitSegment(segment), ("Nontransit segment passed to TransitGraph.")); if (IsGate(segment)) @@ -69,7 +70,7 @@ RouteWeight TransitGraph::CalcSegmentWeight(Segment const & segment) const return RouteWeight( m_estimator->CalcOffroadWeight(GetJunction(segment, false /* front */).GetPoint(), - GetJunction(segment, true /* front */).GetPoint())); + GetJunction(segment, true /* front */).GetPoint(), purpose)); } RouteWeight TransitGraph::GetTransferPenalty(Segment const & from, Segment const & to) const @@ -108,7 +109,8 @@ void TransitGraph::GetTransitEdges(Segment const & segment, bool isOutgoing, { auto const & from = isOutgoing ? segment : s; auto const & to = isOutgoing ? s : segment; - edges.emplace_back(s, CalcSegmentWeight(to) + GetTransferPenalty(from, to)); + edges.emplace_back( + s, CalcSegmentWeight(to, EdgeEstimator::Purpose::Weight) + GetTransferPenalty(from, to)); } } diff --git a/routing/transit_graph.hpp b/routing/transit_graph.hpp index b597810386..d704afeaa2 100644 --- a/routing/transit_graph.hpp +++ b/routing/transit_graph.hpp @@ -34,7 +34,7 @@ public: TransitGraph(NumMwmId numMwmId, std::shared_ptr estimator); Junction const & GetJunction(Segment const & segment, bool front) const; - RouteWeight CalcSegmentWeight(Segment const & segment) const; + RouteWeight CalcSegmentWeight(Segment const & segment, EdgeEstimator::Purpose purpose) const; RouteWeight GetTransferPenalty(Segment const & from, Segment const & to) const; void GetTransitEdges(Segment const & segment, bool isOutgoing, std::vector & edges) const; diff --git a/routing/transit_world_graph.cpp b/routing/transit_world_graph.cpp index f2d5324183..d3b1dd5796 100644 --- a/routing/transit_world_graph.cpp +++ b/routing/transit_world_graph.cpp @@ -133,16 +133,17 @@ RouteWeight TransitWorldGraph::HeuristicCostEstimate(m2::PointD const & from, m2 return RouteWeight(m_estimator->CalcHeuristic(from, to)); } -RouteWeight TransitWorldGraph::CalcSegmentWeight(Segment const & segment) +RouteWeight TransitWorldGraph::CalcSegmentWeight(Segment const & segment, + EdgeEstimator::Purpose purpose) { if (TransitGraph::IsTransitSegment(segment)) { TransitGraph & transitGraph = GetTransitGraph(segment.GetMwmId()); - return transitGraph.CalcSegmentWeight(segment); + return transitGraph.CalcSegmentWeight(segment, purpose); } return RouteWeight(m_estimator->CalcSegmentWeight( - segment, GetRealRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()))); + segment, GetRealRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()), purpose)); } RouteWeight TransitWorldGraph::CalcLeapWeight(m2::PointD const & from, m2::PointD const & to) const @@ -151,21 +152,25 @@ RouteWeight TransitWorldGraph::CalcLeapWeight(m2::PointD const & from, m2::Point } RouteWeight TransitWorldGraph::CalcOffroadWeight(m2::PointD const & from, - m2::PointD const & to) const + m2::PointD const & to, + EdgeEstimator::Purpose purpose) const { - return RouteWeight(m_estimator->CalcOffroadWeight(from, to)); + return RouteWeight(m_estimator->CalcOffroadWeight(from, to, purpose)); } double TransitWorldGraph::CalculateETA(Segment const & from, Segment const & to) { if (TransitGraph::IsTransitSegment(from)) - return CalcSegmentWeight(to).GetWeight(); + return CalcSegmentWeight(to, EdgeEstimator::Purpose::ETA).GetWeight(); if (TransitGraph::IsTransitSegment(to)) - return CalcSegmentWeight(to).GetWeight(); + return CalcSegmentWeight(to, EdgeEstimator::Purpose::ETA).GetWeight(); if (from.GetMwmId() != to.GetMwmId()) - return m_estimator->CalcSegmentETA(to, GetRealRoadGeometry(to.GetMwmId(), to.GetFeatureId())); + { + return m_estimator->CalcSegmentWeight(to, GetRealRoadGeometry(to.GetMwmId(), to + .GetFeatureId()), EdgeEstimator::Purpose::ETA); + } auto & indexGraph = m_indexLoader->GetIndexGraph(from.GetMwmId()); return indexGraph @@ -176,10 +181,11 @@ double TransitWorldGraph::CalculateETA(Segment const & from, Segment const & to) double TransitWorldGraph::CalculateETAWithoutPenalty(Segment const & segment) { if (TransitGraph::IsTransitSegment(segment)) - return CalcSegmentWeight(segment).GetWeight(); + return CalcSegmentWeight(segment, EdgeEstimator::Purpose::ETA).GetWeight(); - return m_estimator->CalcSegmentETA(segment, - GetRealRoadGeometry(segment.GetMwmId(), segment.GetFeatureId())); + return m_estimator->CalcSegmentWeight( + segment, GetRealRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()), + EdgeEstimator::Purpose::ETA); } unique_ptr TransitWorldGraph::GetTransitInfo(Segment const & segment) diff --git a/routing/transit_world_graph.hpp b/routing/transit_world_graph.hpp index 53c2de722e..043cbd8822 100644 --- a/routing/transit_world_graph.hpp +++ b/routing/transit_world_graph.hpp @@ -60,9 +60,10 @@ public: RouteWeight HeuristicCostEstimate(Segment const & from, Segment const & to) override; RouteWeight HeuristicCostEstimate(m2::PointD const & from, m2::PointD const & to) override; RouteWeight HeuristicCostEstimate(Segment const & from, m2::PointD const & to) override; - RouteWeight CalcSegmentWeight(Segment const & segment) override; + RouteWeight CalcSegmentWeight(Segment const & segment, EdgeEstimator::Purpose purpose) override; RouteWeight CalcLeapWeight(m2::PointD const & from, m2::PointD const & to) const override; - RouteWeight CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to) const override; + RouteWeight CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to, + EdgeEstimator::Purpose purpose) const override; double CalculateETA(Segment const & from, Segment const & to) override; double CalculateETAWithoutPenalty(Segment const & segment) override; diff --git a/routing/world_graph.hpp b/routing/world_graph.hpp index 8897a9bc7a..3fa92f3105 100644 --- a/routing/world_graph.hpp +++ b/routing/world_graph.hpp @@ -1,5 +1,6 @@ #pragma once +#include "routing/edge_estimator.hpp" #include "routing/geometry.hpp" #include "routing/index_graph.hpp" #include "routing/joint_segment.hpp" @@ -73,11 +74,13 @@ public: virtual RouteWeight HeuristicCostEstimate(m2::PointD const & from, m2::PointD const & to) = 0; virtual RouteWeight HeuristicCostEstimate(Segment const & from, m2::PointD const & to) = 0; - virtual RouteWeight CalcSegmentWeight(Segment const & segment) = 0; + virtual RouteWeight CalcSegmentWeight(Segment const & segment, + EdgeEstimator::Purpose purpose) = 0; virtual RouteWeight CalcLeapWeight(m2::PointD const & from, m2::PointD const & to) const = 0; - virtual RouteWeight CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to) const = 0; + virtual RouteWeight CalcOffroadWeight(m2::PointD const & from, m2::PointD const & to, + EdgeEstimator::Purpose purpose) const = 0; virtual double CalculateETA(Segment const & from, Segment const & to) = 0; virtual double CalculateETAWithoutPenalty(Segment const & segment) = 0; diff --git a/routing_common/bicycle_model.cpp b/routing_common/bicycle_model.cpp index a59b7d2577..051624a8d8 100644 --- a/routing_common/bicycle_model.cpp +++ b/routing_common/bicycle_model.cpp @@ -57,7 +57,7 @@ HighwayBasedMeanSpeeds const kDefaultSpeeds = { {HighwayType::RouteFerry, InOutCitySpeedKMpH(SpeedKMpH(3.0, 20.0))}, }; -double constexpr kSpeedOffroadKMpH = 3.0; +SpeedKMpH constexpr kSpeedOffroadKMpH = {3.0 /* weight */, 3.0 /* eta */}; // Default VehicleModel::LimitsInitList const kBicycleOptionsDefault = { @@ -456,9 +456,9 @@ bool BicycleModel::IsOneWay(FeatureType & f) const return VehicleModel::IsOneWay(f); } -double BicycleModel::GetOffroadSpeed() const { return kSpeedOffroadKMpH; } +SpeedKMpH BicycleModel::GetOffroadSpeed() const { return kSpeedOffroadKMpH; } -// If one of feature types will be disabled for bicycles, features of this type will be simplyfied +// If one of feature types will be disabled for bicycles, features of this type will be simplified // in generator. Look FeatureBuilder1::IsRoad() for more details. // static BicycleModel const & BicycleModel::AllLimitsInstance() diff --git a/routing_common/bicycle_model.hpp b/routing_common/bicycle_model.hpp index 56737d088c..f1790db01c 100644 --- a/routing_common/bicycle_model.hpp +++ b/routing_common/bicycle_model.hpp @@ -14,7 +14,7 @@ public: /// VehicleModelInterface overrides: SpeedKMpH GetSpeed(FeatureType & f, SpeedParams const & speedParams) const override; bool IsOneWay(FeatureType & f) const override; - double GetOffroadSpeed() const override; + SpeedKMpH GetOffroadSpeed() const override; static BicycleModel const & AllLimitsInstance(); diff --git a/routing_common/car_model.cpp b/routing_common/car_model.cpp index 3ba6e5b24c..5d66f0b135 100644 --- a/routing_common/car_model.cpp +++ b/routing_common/car_model.cpp @@ -63,7 +63,7 @@ std::array constexpr kCountries = {"Australia", "United States of America", "Venezuela"}; -double constexpr kSpeedOffroadKMpH = 3.0; +SpeedKMpH constexpr kSpeedOffroadKMpH = {3.0 /* weight */, 3.0 /* eta */}; VehicleModel::LimitsInitList const kCarOptionsDefault = { // {{roadType, roadType} passThroughAllowed} @@ -209,7 +209,7 @@ CarModel::CarModel(VehicleModel::LimitsInitList const & roadLimits, HighwayBased Init(); } -double CarModel::GetOffroadSpeed() const { return kSpeedOffroadKMpH; } +SpeedKMpH CarModel::GetOffroadSpeed() const { return kSpeedOffroadKMpH; } void CarModel::Init() { diff --git a/routing_common/car_model.hpp b/routing_common/car_model.hpp index 183ad8a431..4558e23574 100644 --- a/routing_common/car_model.hpp +++ b/routing_common/car_model.hpp @@ -14,7 +14,7 @@ public: CarModel(VehicleModel::LimitsInitList const & roadLimits, HighwayBasedInfo const & info); // VehicleModelInterface overrides: - double GetOffroadSpeed() const override; + SpeedKMpH GetOffroadSpeed() const override; static CarModel const & AllLimitsInstance(); static LimitsInitList const & GetOptions(); diff --git a/routing_common/pedestrian_model.cpp b/routing_common/pedestrian_model.cpp index 36bfaec190..fd0f251446 100644 --- a/routing_common/pedestrian_model.cpp +++ b/routing_common/pedestrian_model.cpp @@ -57,7 +57,7 @@ HighwayBasedMeanSpeeds const kDefaultSpeeds = { {HighwayType::RouteFerry, InOutCitySpeedKMpH(SpeedKMpH(1.0, 20.0))}, }; -double constexpr kSpeedOffroadKMpH = 3.0; +SpeedKMpH constexpr kSpeedOffroadKMpH = {3.0 /* weight */, 3.0 /* eta */}; // Default VehicleModel::LimitsInitList const kPedestrianOptionsDefault = { @@ -293,7 +293,7 @@ SpeedKMpH PedestrianModel::GetSpeed(FeatureType & f, SpeedParams const & speedPa return VehicleModel::GetSpeedWihtoutMaxspeed(f, speedParams); } -double PedestrianModel::GetOffroadSpeed() const { return kSpeedOffroadKMpH; } +SpeedKMpH PedestrianModel::GetOffroadSpeed() const { return kSpeedOffroadKMpH; } void PedestrianModel::Init() { diff --git a/routing_common/pedestrian_model.hpp b/routing_common/pedestrian_model.hpp index 6eb2512c18..2a80df24eb 100644 --- a/routing_common/pedestrian_model.hpp +++ b/routing_common/pedestrian_model.hpp @@ -14,7 +14,7 @@ public: /// VehicleModelInterface overrides: SpeedKMpH GetSpeed(FeatureType & f, SpeedParams const & speedParams) const override; bool IsOneWay(FeatureType &) const override { return false; } - double GetOffroadSpeed() const override; + SpeedKMpH GetOffroadSpeed() const override; static PedestrianModel const & AllLimitsInstance(); diff --git a/routing_common/routing_common_tests/vehicle_model_test.cpp b/routing_common/routing_common_tests/vehicle_model_test.cpp index ec60e1caf9..65bee2764a 100644 --- a/routing_common/routing_common_tests/vehicle_model_test.cpp +++ b/routing_common/routing_common_tests/vehicle_model_test.cpp @@ -72,7 +72,7 @@ public: } // We are not going to use offroad routing in these tests. - double GetOffroadSpeed() const override { return 0.0; } + SpeedKMpH GetOffroadSpeed() const override { return {0.0 /* weight */, 0.0 /* eta */}; } }; uint32_t GetType(char const * s0, char const * s1 = 0, char const * s2 = 0) diff --git a/routing_common/vehicle_model.hpp b/routing_common/vehicle_model.hpp index 3879b557f7..2b58b1cd66 100644 --- a/routing_common/vehicle_model.hpp +++ b/routing_common/vehicle_model.hpp @@ -85,7 +85,7 @@ struct SpeedParams Maxspeed m_maxspeed; }; -/// \brief Speeds which are used for edge weight and ETA esimations. +/// \brief Speeds which are used for edge weight and ETA estimations. struct SpeedKMpH { constexpr SpeedKMpH() = default; @@ -231,7 +231,7 @@ public: /// @return Offroad speed in KMpH for vehicle. This speed should be used for non-feature routing /// e.g. to connect start point to nearest feature. - virtual double GetOffroadSpeed() const = 0; + virtual SpeedKMpH GetOffroadSpeed() const = 0; virtual bool IsOneWay(FeatureType & f) const = 0; diff --git a/track_analyzing/track_analyzer/cmd_tracks.cpp b/track_analyzing/track_analyzer/cmd_tracks.cpp index d1a87f9d90..d06e9ce7db 100644 --- a/track_analyzing/track_analyzer/cmd_tracks.cpp +++ b/track_analyzing/track_analyzer/cmd_tracks.cpp @@ -115,7 +115,8 @@ double EstimateDuration(MatchedTrack const & track, shared_ptr es continue; segment = point.GetSegment(); - result += estimator->CalcSegmentWeight(segment, geometry.GetRoad(segment.GetFeatureId())); + result += estimator->CalcSegmentWeight(segment, geometry.GetRoad(segment.GetFeatureId()), + EdgeEstimator::Purpose::ETA); } return result;