Home
last modified time | relevance | path

Searched refs:bestLanes (Results 1 – 5 of 5) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSEdge.cpp554 std::vector<MSLane*>* bestLanes = new std::vector<MSLane*>(); in getDepartLane() local
557 bestLanes->push_back((*i).lane); in getDepartLane()
560 …MSLane* ret = getFreeLane(bestLanes, veh.getVehicleType().getVehicleClass(), getDepartPosBound(veh… in getDepartLane()
561 delete bestLanes; in getDepartLane()
H A DMSVehicle.cpp1318 const std::vector<MSLane*>& bestLanes = getBestLanesContinuation();
1319 auto nextBestLane = bestLanes.begin();
1342 while (nextBestLane != bestLanes.end() && *nextBestLane == nullptr) {
1351 assert(nextBestLane == bestLanes.end() || *nextBestLane != 0);
1352 if (nextBestLane == bestLanes.end()) {
/dports/cad/sumo/sumo-1.2.0/src/guisim/
H A DGUIVehicle.cpp555 std::vector<std::vector<MSVehicle::LaneQ> > bestLanes = myBestLanes; in drawBestLanes() local
557 … (std::vector<std::vector<MSVehicle::LaneQ> >::iterator j = bestLanes.begin(); j != bestLanes.end(… in drawBestLanes()
/dports/cad/sumo/sumo-1.2.0/src/traci-server/
H A DTraCIServerAPI_Vehicle.cpp128 … std::vector<libsumo::TraCIBestLanesData> bestLanes = libsumo::Vehicle::getBestLanes(id); in processGet() local
129 tempContent.writeInt((int)bestLanes.size()); in processGet()
131 …td::vector<libsumo::TraCIBestLanesData>::const_iterator i = bestLanes.begin(); i != bestLanes.end(… in processGet()
/dports/cad/sumo/sumo-1.2.0/src/libsumo/
H A DVehicle.cpp353 const std::vector<MSVehicle::LaneQ>& bestLanes = veh->getBestLanes(); in getBestLanes() local
354 …for (std::vector<MSVehicle::LaneQ>::const_iterator i = bestLanes.begin(); i != bestLanes.end(); ++… in getBestLanes()