From f67953bbccedcc5506225128329e574af0cd5308 Mon Sep 17 00:00:00 2001 From: tatiana-kondakova Date: Mon, 2 Oct 2017 17:58:43 +0300 Subject: [PATCH] TransitGraph implementation --- routing/CMakeLists.txt | 2 + routing/fake_feature_ids.cpp | 7 ++ routing/fake_feature_ids.hpp | 16 ++++ routing/index_graph_starter.cpp | 8 +- routing/index_graph_starter.hpp | 4 +- routing/routing.pro | 2 + routing/single_vehicle_world_graph.cpp | 14 ++- routing/single_vehicle_world_graph.hpp | 4 +- routing/transit_graph.hpp | 72 ++++++++++++++ routing/transit_graph_loader.cpp | 2 +- routing/transit_world_graph.cpp | 96 +++++++++++++++---- routing/transit_world_graph.hpp | 12 ++- routing/world_graph.hpp | 7 +- .../routing/routing.xcodeproj/project.pbxproj | 8 ++ 14 files changed, 225 insertions(+), 29 deletions(-) create mode 100644 routing/fake_feature_ids.cpp create mode 100644 routing/fake_feature_ids.hpp diff --git a/routing/CMakeLists.txt b/routing/CMakeLists.txt index 05705d6903..06d49d988c 100644 --- a/routing/CMakeLists.txt +++ b/routing/CMakeLists.txt @@ -44,6 +44,8 @@ set( edge_estimator.cpp edge_estimator.hpp fake_edges_container.hpp + fake_feature_ids.cpp + fake_feature_ids.hpp fake_graph.hpp fake_vertex.hpp features_road_graph.cpp diff --git a/routing/fake_feature_ids.cpp b/routing/fake_feature_ids.cpp new file mode 100644 index 0000000000..07bde327f4 --- /dev/null +++ b/routing/fake_feature_ids.cpp @@ -0,0 +1,7 @@ +#include "routing/fake_feature_ids.hpp" + +namespace routing +{ +uint32_t constexpr FakeFeatureIds::kIndexGraphStarterId; +uint32_t constexpr FakeFeatureIds::kTransitGraphId; +} // namespace routing diff --git a/routing/fake_feature_ids.hpp b/routing/fake_feature_ids.hpp new file mode 100644 index 0000000000..7a9ced9fcb --- /dev/null +++ b/routing/fake_feature_ids.hpp @@ -0,0 +1,16 @@ +#pragma once + +#include +#include + +namespace routing +{ +struct FakeFeatureIds +{ + static uint32_t constexpr kIndexGraphStarterId = std::numeric_limits::max(); + static uint32_t constexpr kTransitGraphId = std::numeric_limits::max() - 1; +}; + +static_assert(FakeFeatureIds::kIndexGraphStarterId != FakeFeatureIds::kTransitGraphId, + "Fake feature ids should differ."); +} // namespace routing diff --git a/routing/index_graph_starter.cpp b/routing/index_graph_starter.cpp index a10527e4ef..37db058fb8 100644 --- a/routing/index_graph_starter.cpp +++ b/routing/index_graph_starter.cpp @@ -147,7 +147,7 @@ set IndexGraphStarter::GetMwms() const bool IndexGraphStarter::DoesRouteCrossNontransit( RoutingResult const & result) const { - uint32_t nontransitCrossAllowed = 0; + int nontransitCrossAllowed = 0; auto isRealOrPart = [this](Segment const & segment) { if (!IsFakeSegment(segment)) return true; @@ -158,7 +158,7 @@ bool IndexGraphStarter::DoesRouteCrossNontransit( auto real = segment; bool const convertionResult = ConvertToReal(real); CHECK(convertionResult, ()); - return m_graph.GetRoadGeometry(real.GetMwmId(), real.GetFeatureId()).IsTransitAllowed(); + return m_graph.IsTransitAllowed(real.GetMwmId(), real.GetFeatureId()); }; auto const firstRealOrPart = find_if(result.m_path.begin(), result.m_path.end(), isRealOrPart); @@ -295,9 +295,7 @@ void IndexGraphStarter::AddEnding(FakeEnding const & thisEnding, FakeEnding cons isStart /* isOutgoing */, true /* isPartOfReal */, projection.m_segment); bool const oneWay = - m_graph - .GetRoadGeometry(projection.m_segment.GetMwmId(), projection.m_segment.GetFeatureId()) - .IsOneWay(); + m_graph.IsOneWay(projection.m_segment.GetMwmId(), projection.m_segment.GetFeatureId()); if (!strictForward && !oneWay) { auto const backwardSegment = GetReverseSegment(projection.m_segment); diff --git a/routing/index_graph_starter.hpp b/routing/index_graph_starter.hpp index 54284ff1d5..8e45ddc66e 100644 --- a/routing/index_graph_starter.hpp +++ b/routing/index_graph_starter.hpp @@ -1,6 +1,7 @@ #pragma once #include "routing/base/routing_result.hpp" +#include "routing/fake_feature_ids.hpp" #include "routing/fake_graph.hpp" #include "routing/fake_vertex.hpp" #include "routing/index_graph.hpp" @@ -45,8 +46,6 @@ public: friend class FakeEdgesContainer; - static uint32_t constexpr kFakeFeatureId = std::numeric_limits::max(); - static FakeEnding MakeFakeEnding(Segment const & segment, m2::PointD const & point, WorldGraph & graph); static void CheckValidRoute(std::vector const & segments); @@ -144,6 +143,7 @@ private: void AddRealEdges(Segment const & segment, bool isOutgoing, std::vector & edges) const; + static uint32_t constexpr kFakeFeatureId = FakeFeatureIds::kIndexGraphStarterId; WorldGraph & m_graph; // Start segment id uint32_t m_startId; diff --git a/routing/routing.pro b/routing/routing.pro index 6165f21cae..9852a18a16 100644 --- a/routing/routing.pro +++ b/routing/routing.pro @@ -28,6 +28,7 @@ SOURCES += \ cross_routing_context.cpp \ directions_engine.cpp \ edge_estimator.cpp \ + fake_feature_ids.cpp \ features_road_graph.cpp \ geometry.cpp \ index_graph.cpp \ @@ -95,6 +96,7 @@ HEADERS += \ directions_engine.hpp \ edge_estimator.hpp \ fake_edges_container.hpp \ + fake_feature_ids.hpp \ fake_graph.hpp \ fake_vertex.hpp \ features_road_graph.hpp \ diff --git a/routing/single_vehicle_world_graph.cpp b/routing/single_vehicle_world_graph.cpp index 7ffda46431..315f1d9672 100644 --- a/routing/single_vehicle_world_graph.cpp +++ b/routing/single_vehicle_world_graph.cpp @@ -66,9 +66,14 @@ m2::PointD const & SingleVehicleWorldGraph::GetPoint(Segment const & segment, bo return GetJunction(segment, front).GetPoint(); } -RoadGeometry const & SingleVehicleWorldGraph::GetRoadGeometry(NumMwmId mwmId, uint32_t featureId) +bool SingleVehicleWorldGraph::IsOneWay(NumMwmId mwmId, uint32_t featureId) { - return m_loader->GetIndexGraph(mwmId).GetGeometry().GetRoad(featureId); + return GetRoadGeometry(mwmId, featureId).IsOneWay(); +} + +bool SingleVehicleWorldGraph::IsTransitAllowed(NumMwmId mwmId, uint32_t featureId) +{ + return GetRoadGeometry(mwmId, featureId).IsTransitAllowed(); } void SingleVehicleWorldGraph::GetOutgoingEdgesList(Segment const & segment, @@ -114,6 +119,11 @@ bool SingleVehicleWorldGraph::LeapIsAllowed(NumMwmId mwmId) const return m_estimator->LeapIsAllowed(mwmId); } +RoadGeometry const & SingleVehicleWorldGraph::GetRoadGeometry(NumMwmId mwmId, uint32_t featureId) +{ + return m_loader->GetIndexGraph(mwmId).GetGeometry().GetRoad(featureId); +} + void SingleVehicleWorldGraph::GetTwins(Segment const & segment, bool isOutgoing, vector & edges) { diff --git a/routing/single_vehicle_world_graph.hpp b/routing/single_vehicle_world_graph.hpp index e55cba696d..b09b7e38e1 100644 --- a/routing/single_vehicle_world_graph.hpp +++ b/routing/single_vehicle_world_graph.hpp @@ -29,7 +29,8 @@ public: std::vector & edges) override; Junction const & GetJunction(Segment const & segment, bool front) override; m2::PointD const & GetPoint(Segment const & segment, bool front) override; - RoadGeometry const & GetRoadGeometry(NumMwmId mwmId, uint32_t featureId) override; + bool IsOneWay(NumMwmId mwmId, uint32_t featureId) override; + bool IsTransitAllowed(NumMwmId mwmId, uint32_t featureId) override; void ClearCachedGraphs() override { m_loader->Clear(); } void SetMode(Mode mode) override { m_mode = mode; } Mode GetMode() const override { return m_mode; } @@ -48,6 +49,7 @@ public: } private: + RoadGeometry const & GetRoadGeometry(NumMwmId mwmId, uint32_t featureId); void GetTwins(Segment const & s, bool isOutgoing, std::vector & edges); std::unique_ptr m_crossMwmGraph; diff --git a/routing/transit_graph.hpp b/routing/transit_graph.hpp index 346737dec1..bcb68e8ef3 100644 --- a/routing/transit_graph.hpp +++ b/routing/transit_graph.hpp @@ -1,8 +1,80 @@ #pragma once +#include "routing/fake_feature_ids.hpp" +#include "routing/fake_graph.hpp" +#include "routing/fake_vertex.hpp" +#include "routing/road_graph.hpp" +#include "routing/route_weight.hpp" +#include "routing/segment.hpp" + +#include "routing_common/transit_types.hpp" + +#include +#include +#include +#include + namespace routing { class TransitGraph final { +public: + static bool IsTransitFeature(uint32_t featureId) { return featureId == kTransitFeatureId; } + + static bool IsTransitSegment(Segment const & segment) + { + return IsTransitFeature(segment.GetFeatureId()); + } + + Junction const & GetJunction(Segment const & segment, bool front) const + { + CHECK(IsTransitSegment(segment), ("Nontransit segment passed to TransitGraph.")); + auto const & vertex = m_fake.GetVertex(segment); + return front ? vertex.GetJunctionTo() : vertex.GetJunctionFrom(); + } + + RouteWeight CalcSegmentWeight(Segment const & segment) const + { + CHECK(IsTransitSegment(segment), ("Nontransit segment passed to TransitGraph.")); + if (IsGate(segment)) + return RouteWeight(GetGate(segment).GetWeight(), 0 /* nontransitCross */); + + CHECK(IsEdge(segment), ("Unknown transit segment.")); + return RouteWeight(GetEdge(segment).GetWeight(), 0 /* nontransitCross */); + } + + void GetTransitEdges(Segment const & segment, bool isOutgoing, std::vector & edges) const + { + CHECK(IsTransitSegment(segment), ("Nontransit segment passed to TransitGraph.")); + for (auto const & s : m_fake.GetEdges(segment, isOutgoing)) + edges.emplace_back(s, CalcSegmentWeight(isOutgoing ? s : segment)); + } + + std::set const & GetFake(Segment const & real) const { return m_fake.GetFake(real); } + + bool FindReal(Segment const & fake, Segment & real) const { return m_fake.FindReal(fake, real); } + +private: + bool IsGate(Segment const & segment) const { return m_segmentToGate.count(segment) > 0; } + bool IsEdge(Segment const & segment) const { return m_segmentToEdge.count(segment) > 0; } + + transit::Edge const & GetEdge(Segment const & segment) const + { + auto const it = m_segmentToEdge.find(segment); + CHECK(it != m_segmentToEdge.cend(), ("Unknown transit segment.")); + return it->second; + } + + transit::Gate const & GetGate(Segment const & segment) const + { + auto const it = m_segmentToGate.find(segment); + CHECK(it != m_segmentToGate.cend(), ("Unknown transit segment.")); + return it->second; + } + + static uint32_t constexpr kTransitFeatureId = FakeFeatureIds::kTransitGraphId; + FakeGraph m_fake; + std::map m_segmentToEdge; + std::map m_segmentToGate; }; } // namespace routing diff --git a/routing/transit_graph_loader.cpp b/routing/transit_graph_loader.cpp index 0a8d47d26e..03f2eb55b5 100644 --- a/routing/transit_graph_loader.cpp +++ b/routing/transit_graph_loader.cpp @@ -41,7 +41,7 @@ std::unique_ptr TransitGraphLoader::CreateTransitGraph(NumMwmId nu my::Timer timer; auto graphPtr = make_unique(); - // TODO: + // TODO (@t.yan) // MwmValue const & mwmValue = *handle.GetValue(); // DeserializeTransitGraph(mwmValue, *graph); LOG(LINFO, (TRANSIT_FILE_TAG, "section for", file.GetName(), "loaded in", diff --git a/routing/transit_world_graph.cpp b/routing/transit_world_graph.cpp index 8a1c6e872b..ead6b76407 100644 --- a/routing/transit_world_graph.cpp +++ b/routing/transit_world_graph.cpp @@ -26,21 +26,47 @@ TransitWorldGraph::TransitWorldGraph(unique_ptr crossMwmGraph, void TransitWorldGraph::GetEdgeList(Segment const & segment, bool isOutgoing, bool /* isLeap */, bool /* isEnding */, vector & edges) { - auto & indexGraph = m_indexLoader->GetIndexGraph(segment.GetMwmId()); - // TransitGraph & transitGraph = m_transitLoader->GetTransitGraph(segment.GetMwmId()); + auto & transitGraph = m_transitLoader->GetTransitGraph(segment.GetMwmId()); - // TODO: Add fake connected to real segment. - // TODO: Add real connected to fake segment. - indexGraph.GetEdgeList(segment, isOutgoing, edges); + if (TransitGraph::IsTransitSegment(segment)) + { + transitGraph.GetTransitEdges(segment, isOutgoing, edges); + // TODO (@t.yan) GetTwins for transit edges - if (m_mode != Mode::SingleMwm && m_crossMwmGraph && m_crossMwmGraph->IsTransition(segment, isOutgoing)) - GetTwins(segment, isOutgoing, edges); + Segment real; + if (transitGraph.FindReal(segment, real)) + { + bool const haveSameFront = GetJunction(segment, true /* front */) == GetJunction(real, true); + bool const haveSameBack = GetJunction(segment, false /* front */) == GetJunction(real, false); + if ((isOutgoing && haveSameFront) || (!isOutgoing && haveSameBack)) + AddRealEdges(real, isOutgoing, edges); + } + } + else + { + AddRealEdges(segment, isOutgoing, edges); + } + + vector fakeFromReal; + for (auto const & edge : edges) + { + for (auto const & s : transitGraph.GetFake(edge.GetTarget())) + { + bool const haveSameFront = GetJunction(segment, true /* front */) == GetJunction(s, true); + bool const haveSameBack = GetJunction(segment, false /* front */) == GetJunction(s, false); + if ((isOutgoing && haveSameBack) || (!isOutgoing && haveSameFront)) + fakeFromReal.emplace_back(s, edge.GetWeight()); + } + } + edges.insert(edges.end(), fakeFromReal.begin(), fakeFromReal.end()); } Junction const & TransitWorldGraph::GetJunction(Segment const & segment, bool front) { - // TODO: fake transit segments. - return GetRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()) + if (TransitGraph::IsTransitSegment(segment)) + return m_transitLoader->GetTransitGraph(segment.GetMwmId()).GetJunction(segment, front); + + return GetRealRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()) .GetJunction(segment.GetPointId(front)); } @@ -49,10 +75,18 @@ m2::PointD const & TransitWorldGraph::GetPoint(Segment const & segment, bool fro return GetJunction(segment, front).GetPoint(); } -RoadGeometry const & TransitWorldGraph::GetRoadGeometry(NumMwmId mwmId, uint32_t featureId) +bool TransitWorldGraph::IsOneWay(NumMwmId mwmId, uint32_t featureId) { - // TODO: fake transit segments. - return m_indexLoader->GetIndexGraph(mwmId).GetGeometry().GetRoad(featureId); + if (TransitGraph::IsTransitFeature(featureId)) + return true; + return GetRealRoadGeometry(mwmId, featureId).IsOneWay(); +} + +bool TransitWorldGraph::IsTransitAllowed(NumMwmId mwmId, uint32_t featureId) +{ + if (TransitGraph::IsTransitFeature(featureId)) + return true; + return GetRealRoadGeometry(mwmId, featureId).IsTransitAllowed(); } void TransitWorldGraph::ClearCachedGraphs() @@ -75,7 +109,6 @@ void TransitWorldGraph::GetIngoingEdgesList(Segment const & segment, vectorGetTransitGraph(segment.GetMwmId()); + return transitGraph.CalcSegmentWeight(segment); + } + return RouteWeight(m_estimator->CalcSegmentWeight( - segment, GetRoadGeometry(segment.GetMwmId(), segment.GetFeatureId())), + segment, GetRealRoadGeometry(segment.GetMwmId(), segment.GetFeatureId())), 0 /* nontransitCross */); } @@ -99,10 +137,17 @@ RouteWeight TransitWorldGraph::CalcLeapWeight(m2::PointD const & from, m2::Point bool TransitWorldGraph::LeapIsAllowed(NumMwmId /* mwmId */) const { return false; } +//static +bool TransitWorldGraph::IsTransitSegment(Segment const & segment) +{ + return TransitGraph::IsTransitSegment(segment); +} + void TransitWorldGraph::GetTwins(Segment const & segment, bool isOutgoing, vector & edges) { - // TODO: GetTwins for fake transit segments. + // TODO (@t.yan) GetTwins for fake transit segments. + CHECK(!TransitGraph::IsTransitSegment(segment), ("Not implemented")); m_twins.clear(); m_crossMwmGraph->GetTwins(segment, isOutgoing, m_twins); for (Segment const & twin : m_twins) @@ -116,4 +161,23 @@ void TransitWorldGraph::GetTwins(Segment const & segment, bool isOutgoing, edges.emplace_back(twin, RouteWeight(weight, 0 /* nontransitCross */)); } } + +RoadGeometry const & TransitWorldGraph::GetRealRoadGeometry(NumMwmId mwmId, uint32_t featureId) +{ + CHECK(!TransitGraph::IsTransitFeature(featureId), ("GetRealRoadGeometry not designed for transit.")); + return m_indexLoader->GetIndexGraph(mwmId).GetGeometry().GetRoad(featureId); +} + +void TransitWorldGraph::AddRealEdges(Segment const & segment, bool isOutgoing, + vector & edges) +{ + auto & indexGraph = m_indexLoader->GetIndexGraph(segment.GetMwmId()); + indexGraph.GetEdgeList(segment, isOutgoing, edges); + + if (m_mode != Mode::SingleMwm && m_crossMwmGraph && + m_crossMwmGraph->IsTransition(segment, isOutgoing)) + { + GetTwins(segment, isOutgoing, edges); + } +} } // namespace routing diff --git a/routing/transit_world_graph.hpp b/routing/transit_world_graph.hpp index 23d25c79f5..e8a09bb713 100644 --- a/routing/transit_world_graph.hpp +++ b/routing/transit_world_graph.hpp @@ -10,6 +10,8 @@ #include "routing/transit_graph_loader.hpp" #include "routing/world_graph.hpp" +#include "routing_common/transit_types.hpp" + #include "geometry/point2d.hpp" #include @@ -17,6 +19,7 @@ namespace routing { +// WorldGraph for transit + pedestrian routing class TransitWorldGraph final : public WorldGraph { public: @@ -30,7 +33,10 @@ public: std::vector & edges) override; Junction const & GetJunction(Segment const & segment, bool front) override; m2::PointD const & GetPoint(Segment const & segment, bool front) override; - RoadGeometry const & GetRoadGeometry(NumMwmId mwmId, uint32_t featureId) override; + // All transit features are oneway. + bool IsOneWay(NumMwmId mwmId, uint32_t featureId) override; + // All transit features are allowed for through pass. + bool IsTransitAllowed(NumMwmId mwmId, uint32_t featureId) override; void ClearCachedGraphs() override; void SetMode(Mode mode) override { m_mode = mode; } Mode GetMode() const override { return m_mode; } @@ -42,7 +48,11 @@ public: RouteWeight CalcLeapWeight(m2::PointD const & from, m2::PointD const & to) const override; bool LeapIsAllowed(NumMwmId mwmId) const override; + static bool IsTransitSegment(Segment const & segment); + private: + RoadGeometry const & GetRealRoadGeometry(NumMwmId mwmId, uint32_t featureId); + void AddRealEdges(Segment const & segment, bool isOutgoing, vector & edges); void GetTwins(Segment const & s, bool isOutgoing, std::vector & edges); std::unique_ptr m_crossMwmGraph; diff --git a/routing/world_graph.hpp b/routing/world_graph.hpp index 665401fe5f..e82d085e46 100644 --- a/routing/world_graph.hpp +++ b/routing/world_graph.hpp @@ -45,7 +45,12 @@ public: virtual Junction const & GetJunction(Segment const & segment, bool front) = 0; virtual m2::PointD const & GetPoint(Segment const & segment, bool front) = 0; - virtual RoadGeometry const & GetRoadGeometry(NumMwmId mwmId, uint32_t featureId) = 0; + virtual bool IsOneWay(NumMwmId mwmId, uint32_t featureId) = 0; + + // Checks feature is allowed for through pass. + // TODO (t.yan) it's better to use "transit" only for public transport. We should rename + // IsTransitAllowed to something like IsThroughPassAllowed everywhere. + virtual bool IsTransitAllowed(NumMwmId mwmId, uint32_t featureId) = 0; // Clear memory used by loaded graphs. virtual void ClearCachedGraphs() = 0; diff --git a/xcode/routing/routing.xcodeproj/project.pbxproj b/xcode/routing/routing.xcodeproj/project.pbxproj index 412e24e213..a6fb59bfb4 100644 --- a/xcode/routing/routing.xcodeproj/project.pbxproj +++ b/xcode/routing/routing.xcodeproj/project.pbxproj @@ -60,11 +60,13 @@ 40576F761F791360000B593B /* fake_graph_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40576F751F791360000B593B /* fake_graph_test.cpp */; }; 40576F781F7A788B000B593B /* fake_vertex.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 40576F771F7A788B000B593B /* fake_vertex.hpp */; }; 405F48E91F75231E005BA81A /* fake_graph.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 405F48E81F75231E005BA81A /* fake_graph.hpp */; }; + 40655E741F8BA46B0065305E /* fake_feature_ids.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 40655E731F8BA46B0065305E /* fake_feature_ids.hpp */; }; 4065EA801F824A6C0094DEF3 /* transit_world_graph.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 4065EA7E1F824A6C0094DEF3 /* transit_world_graph.hpp */; }; 4065EA811F824A6C0094DEF3 /* transit_world_graph.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4065EA7F1F824A6C0094DEF3 /* transit_world_graph.cpp */; }; 4065EA851F8260010094DEF3 /* transit_graph_loader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4065EA821F8260000094DEF3 /* transit_graph_loader.cpp */; }; 4065EA861F8260010094DEF3 /* transit_graph_loader.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 4065EA831F8260000094DEF3 /* transit_graph_loader.hpp */; }; 4065EA871F8260010094DEF3 /* transit_graph.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 4065EA841F8260000094DEF3 /* transit_graph.hpp */; }; + 40858A871F8CEAE60065CFF7 /* fake_feature_ids.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40858A861F8CEAE60065CFF7 /* fake_feature_ids.cpp */; }; 40A111CD1F2F6776005E6AD5 /* route_weight.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40A111CB1F2F6776005E6AD5 /* route_weight.cpp */; }; 40A111CE1F2F6776005E6AD5 /* route_weight.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 40A111CC1F2F6776005E6AD5 /* route_weight.hpp */; }; 40A111D01F2F9704005E6AD5 /* astar_weight.hpp in Headers */ = {isa = PBXBuildFile; fileRef = 40A111CF1F2F9704005E6AD5 /* astar_weight.hpp */; }; @@ -353,11 +355,13 @@ 40576F751F791360000B593B /* fake_graph_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fake_graph_test.cpp; sourceTree = ""; }; 40576F771F7A788B000B593B /* fake_vertex.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = fake_vertex.hpp; sourceTree = ""; }; 405F48E81F75231E005BA81A /* fake_graph.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = fake_graph.hpp; sourceTree = ""; }; + 40655E731F8BA46B0065305E /* fake_feature_ids.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = fake_feature_ids.hpp; sourceTree = ""; }; 4065EA7E1F824A6C0094DEF3 /* transit_world_graph.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = transit_world_graph.hpp; sourceTree = ""; }; 4065EA7F1F824A6C0094DEF3 /* transit_world_graph.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = transit_world_graph.cpp; sourceTree = ""; }; 4065EA821F8260000094DEF3 /* transit_graph_loader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = transit_graph_loader.cpp; sourceTree = ""; }; 4065EA831F8260000094DEF3 /* transit_graph_loader.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = transit_graph_loader.hpp; sourceTree = ""; }; 4065EA841F8260000094DEF3 /* transit_graph.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = transit_graph.hpp; sourceTree = ""; }; + 40858A861F8CEAE60065CFF7 /* fake_feature_ids.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = fake_feature_ids.cpp; sourceTree = ""; }; 40A111CB1F2F6776005E6AD5 /* route_weight.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = route_weight.cpp; sourceTree = ""; }; 40A111CC1F2F6776005E6AD5 /* route_weight.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = route_weight.hpp; sourceTree = ""; }; 40A111CF1F2F9704005E6AD5 /* astar_weight.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = astar_weight.hpp; sourceTree = ""; }; @@ -840,6 +844,8 @@ 0C5FEC521DDE191E0017688C /* edge_estimator.cpp */, 0C5FEC531DDE191E0017688C /* edge_estimator.hpp */, 40C227FD1F61C07C0046696C /* fake_edges_container.hpp */, + 40858A861F8CEAE60065CFF7 /* fake_feature_ids.cpp */, + 40655E731F8BA46B0065305E /* fake_feature_ids.hpp */, 405F48E81F75231E005BA81A /* fake_graph.hpp */, 40576F771F7A788B000B593B /* fake_vertex.hpp */, 674F9BBC1B0A580E00704FFA /* features_road_graph.cpp */, @@ -993,6 +999,7 @@ 4065EA861F8260010094DEF3 /* transit_graph_loader.hpp in Headers */, 6741AA9D1BF35331002C974C /* turns_notification_manager.hpp in Headers */, 674F9BD71B0A580E00704FFA /* turns_generator.hpp in Headers */, + 40655E741F8BA46B0065305E /* fake_feature_ids.hpp in Headers */, A120B3461B4A7BE5002F3808 /* cross_mwm_road_graph.hpp in Headers */, 6753441C1A3F644F00A0A8C3 /* route.hpp in Headers */, A1616E2C1B6B60AB003F078E /* router_delegate.hpp in Headers */, @@ -1282,6 +1289,7 @@ 0C5F5D221E798B0400307B98 /* cross_mwm_connector.cpp in Sources */, 0C81E1531F02589800DC66DF /* traffic_stash.cpp in Sources */, 0CF5E8AA1E8EA7A1001ED497 /* coding_test.cpp in Sources */, + 40858A871F8CEAE60065CFF7 /* fake_feature_ids.cpp in Sources */, 675344191A3F644F00A0A8C3 /* osrm2feature_map.cpp in Sources */, 40A111CD1F2F6776005E6AD5 /* route_weight.cpp in Sources */, 670D049E1B0B4A970013A7AC /* nearest_edge_finder.cpp in Sources */,