Home
last modified time | relevance | path

Searched refs:myApproachingLanes (Results 1 – 2 of 2) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLane.cpp2196 if (myApproachingLanes.find(approachingEdge) == myApproachingLanes.end()) { in addApproachingLane()
2197 myApproachingLanes[approachingEdge] = std::vector<MSLane*>(); in addApproachingLane()
2203 myApproachingLanes[approachingEdge].push_back(lane); in addApproachingLane()
2209 return myApproachingLanes.find(edge) != myApproachingLanes.end(); in isApproachedFrom()
2215 std::map<MSEdge*, std::vector<MSLane*> >::const_iterator i = myApproachingLanes.find(edge); in isApproachedFrom()
2216 if (i == myApproachingLanes.end()) { in isApproachedFrom()
H A DMSLane.h1370 std::map<MSEdge*, std::vector<MSLane*> > myApproachingLanes; variable