diff --git a/routing/transit_graph.cpp b/routing/transit_graph.cpp index f5d95ee784..e704933ef5 100644 --- a/routing/transit_graph.cpp +++ b/routing/transit_graph.cpp @@ -110,6 +110,8 @@ void TransitGraph::Fill(vector const & stops, vector> stopToBack; + map> stopToFront; for (auto const & gate : gates) { CHECK_NOT_EQUAL(gate.GetWeight(), transit::kInvalidWeight, ("Gate should have valid weight.")); @@ -119,9 +121,9 @@ void TransitGraph::Fill(vector const & stops, vectorsecond, stopCoords, true /* isEnter */); + AddGate(gate, it->second, stopCoords, true /* isEnter */, stopToBack, stopToFront); if (gate.GetExit()) - AddGate(gate, it->second, stopCoords, false /* isEnter */); + AddGate(gate, it->second, stopCoords, false /* isEnter */, stopToBack, stopToFront); } } @@ -130,13 +132,13 @@ void TransitGraph::Fill(vector const & stops, vector const & stopCoords, bool isEnter) + map const & stopCoords, bool isEnter, + map> & stopToBack, + map> & stopToFront) { Segment const dummy = Segment(); for (auto const & projection : ending.m_projections) @@ -219,15 +223,17 @@ void TransitGraph::AddGate(transit::Gate const & gate, FakeEnding const & ending false /* isPartOfReal */, dummy /* realSegment */); m_segmentToGate[gateSegment] = gate; if (isEnter) - m_stopToFront[stopId].insert(gateSegment); + stopToFront[stopId].insert(gateSegment); else - m_stopToBack[stopId].insert(gateSegment); + stopToBack[stopId].insert(gateSegment); } } } Segment TransitGraph::AddEdge(transit::Edge const & edge, - map const & stopCoords) + map const & stopCoords, + map> & stopToBack, + map> & stopToFront) { auto const edgeSegment = GetNewTransitSegment(); auto const stopFromId = edge.GetStop1Id(); @@ -236,19 +242,21 @@ Segment TransitGraph::AddEdge(transit::Edge const & edge, GetStopJunction(stopCoords, stopToId), FakeVertex::Type::PureFake); m_fake.AddStandaloneVertex(edgeSegment, edgeVertex); m_segmentToEdge[edgeSegment] = edge; - m_stopToBack[stopFromId].insert(edgeSegment); - m_stopToFront[stopToId].insert(edgeSegment); + stopToBack[stopFromId].insert(edgeSegment); + stopToFront[stopToId].insert(edgeSegment); return edgeSegment; } void TransitGraph::AddConnections(map> const & connections, + map> const & stopToBack, + map> const & stopToFront, bool isOutgoing) { for (auto const & connection : connections) { for (auto const & connectedSegment : connection.second) { - auto const & adjacentSegments = isOutgoing ? m_stopToFront : m_stopToBack; + auto const & adjacentSegments = isOutgoing ? stopToFront : stopToBack; auto const segmentsIt = adjacentSegments.find(connection.first); if (segmentsIt == adjacentSegments.cend()) continue; diff --git a/routing/transit_graph.hpp b/routing/transit_graph.hpp index 6d6353087f..34a2b9a36d 100644 --- a/routing/transit_graph.hpp +++ b/routing/transit_graph.hpp @@ -48,11 +48,17 @@ private: Segment GetNewTransitSegment() const; void AddGate(transit::Gate const & gate, FakeEnding const & ending, - std::map const & stopCoords, bool isEnter); + std::map const & stopCoords, bool isEnter, + std::map> & stopToBack, + std::map> & stopToFront); // Adds transit edge to fake graph, returns corresponding transit segment. Segment AddEdge(transit::Edge const & edge, - std::map const & stopCoords); + std::map const & stopCoords, + std::map> & stopToBack, + std::map> & stopToFront); void AddConnections(std::map> const & connections, + std::map> const & stopToBack, + std::map> const & stopToFront, bool isOutgoing); static uint32_t constexpr kTransitFeatureId = FakeFeatureIds::kTransitGraphId; @@ -61,8 +67,5 @@ private: std::map m_segmentToEdge; std::map m_segmentToGate; std::map m_transferPenalties; - // TODO (@t.yan) move m_stopToBack, m_stopToFront to Fill - std::map> m_stopToBack; - std::map> m_stopToFront; }; } // namespace routing