diff --git a/geometry/polyline2d.hpp b/geometry/polyline2d.hpp index 9f34a1ca86..78594eea7f 100644 --- a/geometry/polyline2d.hpp +++ b/geometry/polyline2d.hpp @@ -11,7 +11,6 @@ namespace m2 { - template class Polyline { @@ -19,15 +18,16 @@ class Polyline public: Polyline() {} - Polyline(initializer_list > points) : m_points(points) + Polyline(initializer_list> points) : m_points(points) { ASSERT_GREATER(m_points.size(), 1, ()); } - explicit Polyline(vector > const & points) : m_points(points) + explicit Polyline(vector> const & points) : m_points(points) { ASSERT_GREATER(m_points.size(), 1, ()); } - template Polyline(IterT beg, IterT end) : m_points(beg, end) + template + Polyline(IterT beg, IterT end) : m_points(beg, end) { ASSERT_GREATER(m_points.size(), 1, ()); } @@ -67,7 +67,6 @@ public: void Clear() { m_points.clear(); } void Add(Point const & pt) { m_points.push_back(pt); } - void Append(Polyline const & poly) { m_points.insert(m_points.end(), poly.m_points.cbegin(), poly.m_points.cend()); @@ -79,15 +78,9 @@ public: m_points.pop_back(); } - void Swap(Polyline & rhs) - { - m_points.swap(rhs.m_points); - } - + void Swap(Polyline & rhs) { m_points.swap(rhs.m_points); } size_t GetSize() const { return m_points.size(); } - bool operator==(Polyline const & rhs) const { return m_points == rhs.m_points; } - typedef vector > TContainer; typedef typename TContainer::const_iterator TIter; TIter Begin() const { return m_points.begin(); } @@ -122,11 +115,7 @@ public: } vector > const & GetPoints() const { return m_points; } - - friend string DebugPrint(Polyline const & p) - { - return ::DebugPrint(p.m_points); - } + friend string DebugPrint(Polyline const & p) { return ::DebugPrint(p.m_points); } }; using PolylineD = Polyline; diff --git a/map/framework.cpp b/map/framework.cpp index 71f9ea7a84..7a9c551d4c 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -2398,8 +2398,9 @@ void Framework::SetRouterImpl(RouterType type) return m_model.GetIndex().GetMwmIdByCountryFile(CountryFile(countryFile)).IsAlive(); }; - router.reset(new CarRouter(m_model.GetIndex(), countryFileGetter, - CreateCarAStarBidirectionalRouter(m_model.GetIndex(), countryFileGetter))); + router.reset( + new CarRouter(m_model.GetIndex(), countryFileGetter, + CreateCarAStarBidirectionalRouter(m_model.GetIndex(), countryFileGetter))); fetcher.reset(new OnlineAbsentCountriesFetcher(countryFileGetter, localFileChecker)); m_routingSession.SetRoutingSettings(routing::GetCarRoutingSettings()); } diff --git a/routing/car_model.cpp b/routing/car_model.cpp index f5453836cf..75b78b93c8 100644 --- a/routing/car_model.cpp +++ b/routing/car_model.cpp @@ -81,17 +81,10 @@ CarModel const & CarModel::AllLimitsInstance() return instance; } -CarModelFactory::CarModelFactory() -{ - m_model = make_shared(); -} - -shared_ptr CarModelFactory::GetVehicleModel() const -{ - return m_model; -} - -shared_ptr CarModelFactory::GetVehicleModelForCountry(string const & /* country */) const +CarModelFactory::CarModelFactory() { m_model = make_shared(); } +shared_ptr CarModelFactory::GetVehicleModel() const { return m_model; } +shared_ptr CarModelFactory::GetVehicleModelForCountry( + string const & /* country */) const { // @TODO(bykoianko) Different vehicle model for different country should be supported // according to http://wiki.openstreetmap.org/wiki/OSM_tags_for_routing/Access-Restrictions. diff --git a/routing/car_router.cpp b/routing/car_router.cpp index 8c5ef8b5e2..861ad430d6 100644 --- a/routing/car_router.cpp +++ b/routing/car_router.cpp @@ -34,15 +34,15 @@ #include "std/limits.hpp" #include "std/string.hpp" -#include "3party/osrm/osrm-backend/data_structures/query_edge.hpp" #include "3party/osrm/osrm-backend/data_structures/internal_route_result.hpp" +#include "3party/osrm/osrm-backend/data_structures/query_edge.hpp" #include "3party/osrm/osrm-backend/descriptors/description_factory.hpp" #define INTERRUPT_WHEN_CANCELLED(DELEGATE) \ - do \ - { \ - if (DELEGATE.IsCancelled()) \ - return Cancelled; \ + do \ + { \ + if (DELEGATE.IsCancelled()) \ + return Cancelled; \ } while (false) namespace routing @@ -63,7 +63,6 @@ class OSRMRoutingResult : public turns::IRoutingResult public: // turns::IRoutingResult overrides: TUnpackedPathSegments const & GetSegments() const override { return m_loadedSegments; } - void GetPossibleTurns(TNodeId node, m2::PointD const & ingoingPoint, m2::PointD const & junctionPoint, size_t & ingoingCount, turns::TurnCandidates & outgoingTurns) const override @@ -147,14 +146,12 @@ public: } sort(outgoingTurns.candidates.begin(), outgoingTurns.candidates.end(), - [](turns::TurnCandidate const & t1, turns::TurnCandidate const & t2) - { - return t1.angle < t2.angle; - }); + [](turns::TurnCandidate const & t1, turns::TurnCandidate const & t2) { + return t1.angle < t2.angle; + }); } double GetPathLength() const override { return m_rawResult.shortestPathLength; } - Junction GetStartPoint() const override { return Junction(m_rawResult.sourceEdge.segmentPoint, feature::kDefaultAltitudeMeters); @@ -178,14 +175,14 @@ public: bool isEndNode = (segmentIndex == numSegments - 1); if (isStartNode || isEndNode) { - OsrmPathSegmentFactory(m_routingMapping, m_index, - pathSegments[segmentIndex], m_rawResult.sourceEdge, - m_rawResult.targetEdge, isStartNode, isEndNode, m_loadedSegments[segmentIndex]); + OsrmPathSegmentFactory(m_routingMapping, m_index, pathSegments[segmentIndex], + m_rawResult.sourceEdge, m_rawResult.targetEdge, isStartNode, + isEndNode, m_loadedSegments[segmentIndex]); } else { - OsrmPathSegmentFactory(m_routingMapping, m_index, - pathSegments[segmentIndex], m_loadedSegments[segmentIndex]); + OsrmPathSegmentFactory(m_routingMapping, m_index, pathSegments[segmentIndex], + m_loadedSegments[segmentIndex]); } } } @@ -198,17 +195,18 @@ private: RoutingMapping & m_routingMapping; }; -IRouter::ResultCode FindSingleOsrmRoute(FeatureGraphNode const & source, FeatureGraphNode const & target, - RouterDelegate const & delegate, Index const & index, TRoutingMappingPtr & mapping, - Route & route) +IRouter::ResultCode FindSingleOsrmRoute(FeatureGraphNode const & source, + FeatureGraphNode const & target, + RouterDelegate const & delegate, Index const & index, + TRoutingMappingPtr & mapping, Route & route) { vector geometry; Route::TTurns turns; Route::TTimes times; Route::TStreets streets; - LOG(LINFO, ("OSRM route from", MercatorBounds::ToLatLon(source.segmentPoint), - "to", MercatorBounds::ToLatLon(target.segmentPoint))); + LOG(LINFO, ("OSRM route from", MercatorBounds::ToLatLon(source.segmentPoint), "to", + MercatorBounds::ToLatLon(target.segmentPoint))); RawRoutingResult routingResult; if (!FindSingleRoute(source, target, mapping->m_dataFacade, routingResult)) @@ -234,7 +232,7 @@ IRouter::ResultCode FindSingleOsrmRoute(FeatureGraphNode const & source, Feature return routing::IRouter::NoError; } -} // namespace +} // namespace // static bool CarRouter::CheckRoutingAbility(m2::PointD const & startPoint, m2::PointD const & finalPoint, @@ -247,15 +245,11 @@ bool CarRouter::CheckRoutingAbility(m2::PointD const & startPoint, m2::PointD co CarRouter::CarRouter(Index & index, TCountryFileFn const & countryFileFn, unique_ptr router) - : m_index(index), m_indexManager(countryFileFn, index), m_router(move(router)) + : m_index(index), m_indexManager(countryFileFn, index), m_router(move(router)) { } -string CarRouter::GetName() const -{ - return "vehicle"; -} - +string CarRouter::GetName() const { return "vehicle"; } void CarRouter::ClearState() { m_cachedTargets.clear(); @@ -264,8 +258,9 @@ void CarRouter::ClearState() m_router->ClearState(); } -bool CarRouter::FindRouteMsmt(TFeatureGraphNodeVec const & sources, TFeatureGraphNodeVec const & targets, - RouterDelegate const & delegate, TRoutingMappingPtr & mapping, Route & route) +bool CarRouter::FindRouteMsmt(TFeatureGraphNodeVec const & sources, + TFeatureGraphNodeVec const & targets, RouterDelegate const & delegate, + TRoutingMappingPtr & mapping, Route & route) { ASSERT(mapping, ()); @@ -283,9 +278,8 @@ bool CarRouter::FindRouteMsmt(TFeatureGraphNodeVec const & sources, TFeatureGrap return false; } -void FindGraphNodeOffsets(uint32_t const nodeId, m2::PointD const & point, - Index const * pIndex, TRoutingMappingPtr & mapping, - FeatureGraphNode & graphNode) +void FindGraphNodeOffsets(uint32_t const nodeId, m2::PointD const & point, Index const * pIndex, + TRoutingMappingPtr & mapping, FeatureGraphNode & graphNode) { graphNode.segmentPoint = point; @@ -421,17 +415,16 @@ CarRouter::ResultCode CarRouter::CalculateRoute(m2::PointD const & startPoint, TFeatureGraphNodeVec startTask; { - ResultCode const code = FindPhantomNodes(startPoint, startDirection, - startTask, kMaxNodeCandidatesCount, startMapping); + ResultCode const code = FindPhantomNodes(startPoint, startDirection, startTask, + kMaxNodeCandidatesCount, startMapping); if (code != NoError) return code; } { if (finalPoint != m_cachedTargetPoint) { - ResultCode const code = - FindPhantomNodes(finalPoint, m2::PointD::Zero(), - m_cachedTargets, kMaxNodeCandidatesCount, targetMapping); + ResultCode const code = FindPhantomNodes(finalPoint, m2::PointD::Zero(), m_cachedTargets, + kMaxNodeCandidatesCount, targetMapping); if (code != NoError) return code; m_cachedTargetPoint = finalPoint; @@ -454,12 +447,11 @@ CarRouter::ResultCode CarRouter::CalculateRoute(m2::PointD const & startPoint, if (startMapping->GetMwmId() == targetMapping->GetMwmId()) { LOG(LINFO, ("Single mwm routing case")); - m_indexManager.ForEachMapping([](pair const & indexPair) - { - indexPair.second->FreeCrossContext(); - }); - ResultCode crossCode = CalculateCrossMwmPath(startTask, m_cachedTargets, m_indexManager, crossDistanceM, - delegate, finalPath); + m_indexManager.ForEachMapping([](pair const & indexPair) { + indexPair.second->FreeCrossContext(); + }); + ResultCode crossCode = CalculateCrossMwmPath(startTask, m_cachedTargets, m_indexManager, + crossDistanceM, delegate, finalPath); LOG(LINFO, ("Found cross path in", timer.ElapsedNano(), "ns.")); if (!FindRouteMsmt(startTask, m_cachedTargets, delegate, startMapping, route)) { @@ -476,7 +468,8 @@ CarRouter::ResultCode CarRouter::CalculateRoute(m2::PointD const & startPoint, if (crossCode == NoError && crossDistanceM < route.GetTotalDistanceMeters()) { - LOG(LINFO, ("Cross mwm path shorter. Cross cost:", crossDistanceM, "single cost:", route.GetTotalDistanceMeters())); + LOG(LINFO, ("Cross mwm path shorter. Cross distance:", crossDistanceM, "single distance:", + route.GetTotalDistanceMeters())); auto code = MakeRouteFromCrossesPath(finalPath, delegate, route); LOG(LINFO, ("Made final route in", timer.ElapsedNano(), "ns.")); timer.Reset(); @@ -488,11 +481,11 @@ CarRouter::ResultCode CarRouter::CalculateRoute(m2::PointD const & startPoint, return NoError; } - else //4.2 Multiple mwm case + else // 4.2 Multiple mwm case { LOG(LINFO, ("Multiple mwm routing case")); - ResultCode code = CalculateCrossMwmPath(startTask, m_cachedTargets, m_indexManager, crossDistanceM, - delegate, finalPath); + ResultCode code = CalculateCrossMwmPath(startTask, m_cachedTargets, m_indexManager, + crossDistanceM, delegate, finalPath); timer.Reset(); INTERRUPT_WHEN_CANCELLED(delegate); delegate.OnProgress(kCrossPathFoundProgress); @@ -502,10 +495,9 @@ CarRouter::ResultCode CarRouter::CalculateRoute(m2::PointD const & startPoint, { auto code = MakeRouteFromCrossesPath(finalPath, delegate, route); // Manually free all cross context allocations before geometry unpacking. - m_indexManager.ForEachMapping([](pair const & indexPair) - { - indexPair.second->FreeCrossContext(); - }); + m_indexManager.ForEachMapping([](pair const & indexPair) { + indexPair.second->FreeCrossContext(); + }); LOG(LINFO, ("Made final route in", timer.ElapsedNano(), "ns.")); timer.Reset(); return code; @@ -524,7 +516,8 @@ IRouter::ResultCode CarRouter::FindPhantomNodes(m2::PointD const & point, getter.SetPoint(point); m_index.ForEachInRectForMWM(getter, MercatorBounds::RectByCenterXYAndSizeInMeters( - point, kFeatureFindingRectSideRadiusMeters), scales::GetUpperScale(), mapping->GetMwmId()); + point, kFeatureFindingRectSideRadiusMeters), + scales::GetUpperScale(), mapping->GetMwmId()); if (!getter.HasCandidates()) return RouteNotFound; @@ -553,9 +546,11 @@ bool CarRouter::DoesEdgeIndexExist(Index::MwmId const & mwmId) return true; } -IRouter::ResultCode CarRouter::FindSingleRouteDispatcher(FeatureGraphNode const & source, FeatureGraphNode const & target, - RouterDelegate const & delegate, TRoutingMappingPtr & mapping, - Route & route) +IRouter::ResultCode CarRouter::FindSingleRouteDispatcher(FeatureGraphNode const & source, + FeatureGraphNode const & target, + RouterDelegate const & delegate, + TRoutingMappingPtr & mapping, + Route & route) { ASSERT_EQUAL(source.mwmId, target.mwmId, ()); ASSERT(m_router, ()); @@ -568,8 +563,8 @@ IRouter::ResultCode CarRouter::FindSingleRouteDispatcher(FeatureGraphNode const if (DoesEdgeIndexExist(source.mwmId) && m_router) { // A* routing - LOG(LINFO, ("A* route from", MercatorBounds::ToLatLon(source.segmentPoint), - "to", MercatorBounds::ToLatLon(target.segmentPoint))); + LOG(LINFO, ("A* route from", MercatorBounds::ToLatLon(source.segmentPoint), "to", + MercatorBounds::ToLatLon(target.segmentPoint))); result = m_router->CalculateRoute(source.segmentPoint, m2::PointD(0, 0) /* direction */, target.segmentPoint, delegate, mwmRoute); } diff --git a/routing/car_router.hpp b/routing/car_router.hpp index 1e64f35927..396e6502ec 100644 --- a/routing/car_router.hpp +++ b/routing/car_router.hpp @@ -9,7 +9,10 @@ #include "std/unique_ptr.hpp" #include "std/vector.hpp" -namespace feature { class TypesHolder; } +namespace feature +{ +class TypesHolder; +} class Index; struct RawRouteData; @@ -62,9 +65,9 @@ protected: * \param mapping Reference to routing indexes. * \return NoError if there are any nodes in res. RouteNotFound otherwise. */ - IRouter::ResultCode FindPhantomNodes(m2::PointD const & point, - m2::PointD const & direction, TFeatureGraphNodeVec & res, - size_t maxCount, TRoutingMappingPtr const & mapping); + IRouter::ResultCode FindPhantomNodes(m2::PointD const & point, m2::PointD const & direction, + TFeatureGraphNodeVec & res, size_t maxCount, + TRoutingMappingPtr const & mapping); private: /*! @@ -83,13 +86,15 @@ private: bool DoesEdgeIndexExist(Index::MwmId const & mwmId); /*! - * \brief Builds a route within one mwm using A* if edge index section is available and osrm otherwise. + * \brief Builds a route within one mwm using A* if edge index section is available and osrm + * otherwise. * Then reconstructs the route and restores all route attributes. * \param route The found route is added to the |route| if the method returns true. */ - IRouter::ResultCode FindSingleRouteDispatcher(FeatureGraphNode const & source, FeatureGraphNode const & target, - RouterDelegate const & delegate, TRoutingMappingPtr & mapping, - Route & route); + IRouter::ResultCode FindSingleRouteDispatcher(FeatureGraphNode const & source, + FeatureGraphNode const & target, + RouterDelegate const & delegate, + TRoutingMappingPtr & mapping, Route & route); /*! Finds single shortest path in a single MWM between 2 sets of edges. * It's a route from multiple sources to multiple targets. diff --git a/routing/features_road_graph.cpp b/routing/features_road_graph.cpp index 25e1cbc0b5..79c61a0a58 100644 --- a/routing/features_road_graph.cpp +++ b/routing/features_road_graph.cpp @@ -46,7 +46,8 @@ FeaturesRoadGraph::Value::Value(MwmSet::MwmHandle handle) : m_mwmHandle(move(han m_altitudeLoader = make_unique(*m_mwmHandle.GetValue()); } -FeaturesRoadGraph::CrossCountryVehicleModel::CrossCountryVehicleModel(unique_ptr vehicleModelFactory) +FeaturesRoadGraph::CrossCountryVehicleModel::CrossCountryVehicleModel( + unique_ptr vehicleModelFactory) : m_vehicleModelFactory(move(vehicleModelFactory)) , m_maxSpeedKMPH(m_vehicleModelFactory->GetVehicleModel()->GetMaxSpeed()) { @@ -106,12 +107,9 @@ void FeaturesRoadGraph::RoadInfoCache::Clear() { m_cache.clear(); } - FeaturesRoadGraph::FeaturesRoadGraph(Index const & index, IRoadGraph::Mode mode, unique_ptr vehicleModelFactory) - : m_index(index) - , m_mode(mode) - , m_vehicleModel(move(vehicleModelFactory)) + : m_index(index), m_mode(mode), m_vehicleModel(move(vehicleModelFactory)) { } diff --git a/routing/road_graph_router.cpp b/routing/road_graph_router.cpp index c81713a6d6..df437d399d 100644 --- a/routing/road_graph_router.cpp +++ b/routing/road_graph_router.cpp @@ -1,3 +1,4 @@ +#include "routing/road_graph_router.hpp" #include "routing/bicycle_directions.hpp" #include "routing/bicycle_model.hpp" #include "routing/car_model.hpp" @@ -5,7 +6,6 @@ #include "routing/nearest_edge_finder.hpp" #include "routing/pedestrian_directions.hpp" #include "routing/pedestrian_model.hpp" -#include "routing/road_graph_router.hpp" #include "routing/route.hpp" #include "coding/reader_wrapper.hpp" @@ -137,7 +137,6 @@ void FindClosestEdges(IRoadGraph const & graph, m2::PointD const & point, } // namespace RoadGraphRouter::~RoadGraphRouter() {} - RoadGraphRouter::RoadGraphRouter(string const & name, Index const & index, TCountryFileFn const & countryFileFn, IRoadGraph::Mode mode, unique_ptr && vehicleModelFactory, @@ -312,7 +311,8 @@ unique_ptr CreateBicycleAStarBidirectionalRouter(Index & index, TCountr return router; } -unique_ptr CreateCarAStarBidirectionalRouter(Index & index, TCountryFileFn const & countryFileFn) +unique_ptr CreateCarAStarBidirectionalRouter(Index & index, + TCountryFileFn const & countryFileFn) { unique_ptr vehicleModelFactory = make_unique(); unique_ptr algorithm = make_unique(); diff --git a/routing/road_graph_router.hpp b/routing/road_graph_router.hpp index 6d0a2fc67b..14405a38d6 100644 --- a/routing/road_graph_router.hpp +++ b/routing/road_graph_router.hpp @@ -24,8 +24,7 @@ class RoadGraphRouter : public IRouter { public: RoadGraphRouter(string const & name, Index const & index, TCountryFileFn const & countryFileFn, - IRoadGraph::Mode mode, - unique_ptr && vehicleModelFactory, + IRoadGraph::Mode mode, unique_ptr && vehicleModelFactory, unique_ptr && algorithm, unique_ptr && directionsEngine); ~RoadGraphRouter() override; @@ -56,5 +55,6 @@ private: unique_ptr CreatePedestrianAStarRouter(Index & index, TCountryFileFn const & countryFileFn); unique_ptr CreatePedestrianAStarBidirectionalRouter(Index & index, TCountryFileFn const & countryFileFn); unique_ptr CreateBicycleAStarBidirectionalRouter(Index & index, TCountryFileFn const & countryFileFn); -unique_ptr CreateCarAStarBidirectionalRouter(Index & index, TCountryFileFn const & countryFileFn); +unique_ptr CreateCarAStarBidirectionalRouter(Index & index, + TCountryFileFn const & countryFileFn); } // namespace routing diff --git a/routing/route.cpp b/routing/route.cpp index a60391cda2..d0adb8f24e 100644 --- a/routing/route.cpp +++ b/routing/route.cpp @@ -365,7 +365,8 @@ void Route::AppendRoute(Route const & route) ASSERT(!m_times.empty(), ()); // Remove road end point and turn instruction. - ASSERT_LESS(MercatorBounds::DistanceOnEarth(m_poly.End().m_pt, route.m_poly.Begin().m_pt), 2 /* meters */, ()); + ASSERT_LESS(MercatorBounds::DistanceOnEarth(m_poly.End().m_pt, route.m_poly.Begin().m_pt), + 2 /* meters */, ()); m_poly.PopBack(); CHECK(!m_turns.empty(), ()); ASSERT_EQUAL(m_turns.back().m_turn, turns::TurnDirection::ReachedYourDestination, ()); diff --git a/routing/route.hpp b/routing/route.hpp index 3e464eb10e..f364fb747b 100644 --- a/routing/route.hpp +++ b/routing/route.hpp @@ -59,7 +59,6 @@ public: inline void SetSectionTimes(TTimes && v) { m_times = move(v); } inline void SetStreetNames(TStreets && v) { m_streets = move(v); } inline void SetAltitudes(feature::TAltitudes && v) { m_altitudes = move(v); } - /// \brief Glues all |route| attributes to |this| except for |m_altitudes|. // @TODO In the future this method should append |m_altitudes| as well. // It's not implemented now because it's not easy to do it and it'll not be used in diff --git a/routing/routing_benchmarks/helpers.hpp b/routing/routing_benchmarks/helpers.hpp index f4793c0d9d..9d442d97e1 100644 --- a/routing/routing_benchmarks/helpers.hpp +++ b/routing/routing_benchmarks/helpers.hpp @@ -78,7 +78,6 @@ public: }; SimplifiedModelFactory() : m_model(make_shared()) {} - // VehicleModelFactory overrides: shared_ptr GetVehicleModel() const override { return m_model; } shared_ptr GetVehicleModelForCountry( diff --git a/routing/routing_integration_tests/routing_test_tools.cpp b/routing/routing_integration_tests/routing_test_tools.cpp index 80ad52ad1f..378d8513ac 100644 --- a/routing/routing_integration_tests/routing_test_tools.cpp +++ b/routing/routing_integration_tests/routing_test_tools.cpp @@ -77,13 +77,12 @@ namespace integration unique_ptr CreateCarRouter(Index & index, storage::CountryInfoGetter const & infoGetter) { - auto const countryFileGetter = [&infoGetter](m2::PointD const & pt) - { + auto const countryFileGetter = [&infoGetter](m2::PointD const & pt) { return infoGetter.GetRegionCountryId(pt); }; - auto carRouter = make_unique(index, countryFileGetter, - CreateCarAStarBidirectionalRouter(index, countryFileGetter)); + auto carRouter = make_unique( + index, countryFileGetter, CreateCarAStarBidirectionalRouter(index, countryFileGetter)); return carRouter; } @@ -111,7 +110,6 @@ namespace integration } IRouter * GetRouter() const override { return m_carRouter.get(); } - private: unique_ptr m_carRouter; }; diff --git a/routing/vehicle_model.hpp b/routing/vehicle_model.hpp index 5dd93f54f3..f0ff71c298 100644 --- a/routing/vehicle_model.hpp +++ b/routing/vehicle_model.hpp @@ -44,7 +44,6 @@ class VehicleModelFactory { public: virtual ~VehicleModelFactory() {} - /// @return Default vehicle model which corresponds for all countrines, /// but it may be non optimal for some countries virtual shared_ptr GetVehicleModel() const = 0;