54#define BEST_LANE_LOOKAHEAD 3000.0
70 const std::string& streetName,
71 const std::string& edgeType,
72 const std::string& routingType,
75 Named(id), myNumericalID(numericalID), myLanes(nullptr),
76 myLaneChanger(nullptr), myFunction(function), myVaporizationRequests(0),
77 myLastFailedInsertionTime(-1),
78 myFromJunction(nullptr), myToJunction(nullptr),
79 myHaveTransientPermissions(false),
80 myOtherTazConnector(nullptr),
81 myStreetName(streetName),
83 myRoutingType(routingType),
88 myEmptyTraveltime(0.),
91 myAmRoundabout(false),
107 myLanes = std::shared_ptr<const std::vector<MSLane*> >(lanes);
111 for (
MSLane*
const lane : *lanes) {
136 if (haveTLSPenalty || minorPenalty > 0) {
140 for (
const MSLink*
const link : l->getLinkCont()) {
141 if (link->getLane()->isWalkingArea() && link->getLaneBefore()->isNormal()) {
144 SUMOTime linkPenalty = link->isTLSControlled() ? link->getMesoTLSPenalty() : (link->havePriority() ? 0 : minorPenalty);
145 if (minPenalty == -1) {
146 minPenalty = linkPenalty;
148 minPenalty =
MIN2(minPenalty, linkPenalty);
152 if (minPenalty > 0) {
159 for (
const auto& ili :
myLanes->front()->getIncomingLanes()) {
160 double penalty =
STEPS2TIME(ili.viaLink->getMesoTLSPenalty());
161 if (!ili.viaLink->haveOffPriority()) {
170 const MSLink* link =
myLanes->front()->getIncomingLanes()[0].viaLink;
189 if (!edge->isInternal()) {
193 auto it = std::find(succ.begin(), succ.end(),
this);
194 auto it2 = std::find(succVia.begin(), succVia.end(), std::make_pair(
const_cast<const MSEdge*
>(
this), (
const MSEdge*)
nullptr));
195 auto it3 = std::find(pred.begin(), pred.end(),
this);
196 if (it != succ.end()) {
200 if (it3 != pred.end()) {
210 for (
MSLink*
const link : lane->getLinkCont()) {
211 link->initParallelLinks();
212 MSLane*
const toL = link->getLane();
213 MSLane*
const viaL = link->getViaLane();
214 if (toL !=
nullptr) {
227 if (viaL !=
nullptr) {
234 lane->checkBufferType();
241 if (
myLanes->back()->getOpposite() !=
nullptr) {
292 const MSLink*
const link = lane->getLogicalPredecessorLane()->getLinkTo(lane);
293 assert(link !=
nullptr);
312 for (
auto& allowed : laneCont) {
314 allowed.first |= permissions;
318 laneCont.push_back(std::make_pair(permissions,
allowedLanes));
326 return (p | ignored) == ignored ? 0 : p;
335 bool lanesChangedPermission =
false;
343 lanesChangedPermission |= lane->hadPermissionChanges();
358 std::shared_ptr<std::vector<MSLane*> >
allowedLanes = std::make_shared<std::vector<MSLane*> >();
375 pred->myOrigAllowed = pred->myAllowed;
376 pred->myOrigAllowedTargets = pred->myAllowedTargets;
377 pred->myOrigClassesViaSuccessorMap = pred->myClassesViaSuccessorMap;
378 pred->myHaveTransientPermissions =
true;
380 pred->rebuildAllowedTargets(updateVehicles);
384 s->updatePermissions();
395 bool universalMap =
true;
396 std::shared_ptr<std::vector<MSLane*> > allLanes = std::make_shared<std::vector<MSLane*> >();
400 for (
const MSLink*
const link : lane->getLinkCont()) {
401 if (&link->getLane()->getEdge() == target) {
402 allLanes->push_back(lane);
403 combinedTargetPermissions |= link->getLane()->getPermissions();
404 if (link->getViaLane() !=
nullptr &&
405 ((lane->getPermissions() & link->getLane()->getPermissions()) != link->getViaLane()->getPermissions())) {
407 universalMap =
false;
411 if (combinedTargetPermissions == 0 || (lane->getPermissions() & combinedTargetPermissions) != lane->getPermissions()) {
412 universalMap =
false;
429 std::shared_ptr<std::vector<MSLane*> >
allowedLanes = std::make_shared<std::vector<MSLane*> >();
432 for (
const MSLink*
const link : lane->getLinkCont()) {
433 if (link->getLane()->allowsVehicleClass((
SUMOVehicleClass)vclass) && &link->getLane()->getEdge() == target && (link->getViaLane() ==
nullptr || link->getViaLane()->allowsVehicleClass((
SUMOVehicleClass)vclass))) {
444 if (updateVehicles) {
448 veh->updateBestLanes(
true);
450 lane->releaseVehicles();
472 const int resultIndex = lane->
getIndex() + offset;
473 if (resultIndex >=
getNumLanes() && includeOpposite) {
479 }
else if (resultIndex >= (
int)
myLanes->size() || resultIndex < 0) {
482 return (*
myLanes)[resultIndex];
487const std::vector<MSLane*>*
490 AllowedLanesByTarget::const_iterator i = targets.find(&destination);
491 if (i != targets.end()) {
492 for (
const auto& allowed : i->second) {
493 if ((allowed.first & vclass) == vclass) {
494 return allowed.second.get();
502const std::vector<MSLane*>*
509 if ((allowed.first & vclass) == vclass) {
510 return allowed.second.get();
536 if (allowed ==
nullptr) {
540 if (allowed !=
nullptr) {
541 double largestGap = 0;
542 MSLane* resByGap =
nullptr;
543 double leastOccupancy = std::numeric_limits<double>::max();
544 for (std::vector<MSLane*>::const_iterator i = allowed->begin(); i != allowed->end(); ++i) {
545 const double occupancy = (*i)->getBruttoOccupancy();
546 if (occupancy < leastOccupancy) {
548 leastOccupancy = occupancy;
550 const MSVehicle* last = (*i)->getLastFullVehicle();
552 if (lastGap > largestGap) {
553 largestGap = lastGap;
557 if (resByGap !=
nullptr) {
568 if (allowed ==
nullptr) {
572 if (allowed !=
nullptr) {
573 double largestGap = 0;
574 double largestSpeed = 0;
575 MSLane* resByGap =
nullptr;
576 double leastOccupancy = std::numeric_limits<double>::max();
578 for (std::vector<MSLane*>::const_iterator i = allowed->begin(); i != allowed->end(); ++i, aIndex++) {
579 const double occupancy = (*i)->getBruttoOccupancy();
580 if (occupancy < leastOccupancy) {
582 leastOccupancy = occupancy;
584 const MSVehicle* last = (*i)->getLastFullVehicle();
587 if (lastGap > largestGap && maxSpeed >= largestSpeed) {
588 largestGap = lastGap;
591 if (last !=
nullptr) {
595 if (resByGap !=
nullptr) {
628 for (std::vector<MSLane*>::const_iterator i =
myLanes->begin(); i !=
myLanes->end(); ++i) {
629 MSVehicle* last = (*i)->getLastFullVehicle();
630 if (last !=
nullptr) {
689 const std::vector<MSVehicle::LaneQ>& bl = veh.
getBestLanes();
690 double bestLength = -1;
691 for (std::vector<MSVehicle::LaneQ>::const_iterator i = bl.begin(); i != bl.end(); ++i) {
692 if ((*i).length > bestLength) {
693 bestLength = (*i).length;
699 double departPos = 0;
704 std::vector<MSLane*>* bestLanes =
new std::vector<MSLane*>();
705 for (std::vector<MSVehicle::LaneQ>::const_iterator i = bl.begin(); i != bl.end(); ++i) {
706 if (((*i).length - departPos) >= bestLength) {
709 if (lane->getNormalSuccessorLane() == (*i).lane) {
710 bestLanes->push_back(lane);
714 bestLanes->push_back((*i).lane);
742 for (std::vector<MSLane*>::const_iterator i =
myLanes->begin(); i !=
myLanes->end(); ++i) {
743 if ((*i)->allowsVehicleClass(vClass, routingMode)) {
761 if (departLane !=
nullptr) {
765 vMax *= (1 + SPEED_EPS);
774 WRITE_WARNINGF(
TL(
"Choosing new speed factor % for vehicle '%' to match departure speed % (max %)."),
798 throw ProcessError(
TLF(
"Departure speed for vehicle '%' is too high for the departure edge '%', time=%.",
801 WRITE_WARNINGF(
TL(
"Departure speed for vehicle '%' is too high for the departure edge '%', time=%."),
818 WRITE_WARNINGF(
TL(
"Invalid departPos % given for vehicle '%', time=%. Inserting at lane end instead."),
835 while (segment !=
nullptr && !result) {
837 result = segment->
hasSpaceFor(veh, time, qIdx,
true) == time;
845 result = segment->
hasSpaceFor(veh, time, qIdx,
true) == time;
858 if (insertionLane ==
nullptr) {
859 WRITE_WARNINGF(
TL(
"Could not insert vehicle '%' on any lane of edge '%', time=%."),
868 for (std::vector<MSLane*>::const_iterator i =
myLanes->begin(); i !=
myLanes->end(); ++i) {
869 const double occupancy = (*i)->getBruttoOccupancy();
879 if (insertionLane ==
nullptr) {
919 for (
const MSLink*
const link : l->getLinkCont()) {
920 if (&link->getLane()->getEdge() == followerAfterInternal) {
921 if (link->getViaLane() !=
nullptr) {
922 if (link->getViaLane()->allowsVehicleClass(vClass)) {
923 return &link->getViaLane()->getEdge();
939 assert(followerAfterInternal != 0);
944 while (edge !=
nullptr && edge->
isInternal()) {
954 const MSEdge* result =
this;
964 const MSEdge* result =
this;
975 double totalNumVehs = 0;
978 const int numVehs = segment->getCarNumber();
981 totalNumVehs += numVehs;
984 if (totalNumVehs == 0) {
989 int numVehs = lane->getVehicleNumber();
994 v += numVehs * lane->getMeanSpeed();
995 totalNumVehs += numVehs;
999 if (lane->getVehicleNumber() > 0) {
1005 if (totalNumVehs == 0) {
1009 return v / totalNumVehs;
1017 f += lane->getFrictionCoefficient();
1020 return f / (double)
myLanes->size();
1033 double totalNumVehs = 0;
1035 const int numVehs = lane->getVehicleNumber();
1036 v += numVehs * lane->getMeanSpeedBike();
1037 totalNumVehs += numVehs;
1039 if (totalNumVehs == 0) {
1042 return v / totalNumVehs;
1048 assert(minSpeed > 0);
1064 const DictType::iterator it =
myDict.lower_bound(
id);
1065 if (it ==
myDict.end() || it->first !=
id) {
1067 myDict.emplace_hint(it,
id, ptr);
1080 const DictType::iterator it =
myDict.find(
id);
1081 if (it ==
myDict.end()) {
1094 if (startIdx + 1 < (
int)
myEdges.size() &&
myEdges[startIdx + 1] !=
nullptr &&
myEdges[startIdx + 1]->getID() ==
id) {
1109 for (DictType::iterator i =
myDict.begin(); i !=
myDict.end(); ++i) {
1119 for (DictType::iterator i =
myDict.begin(); i !=
myDict.end(); ++i) {
1120 into.push_back((*i).first);
1127 const std::string& rid) {
1135 const std::string& rid) {
1136 for (std::vector<std::string>::const_iterator i = desc.begin(); i != desc.end(); ++i) {
1139 if (edge ==
nullptr) {
1140 throw ProcessError(
"The edge '" + *i +
"' within the route " + rid +
" is not known."
1141 +
"\n The route can not be build.");
1143 into.push_back(edge);
1150 assert(
this != other);
1151 if (doBoundaryEstimate) {
1163 return getLanes()[0]->getShape()[-1].distanceTo2D(other->
getLanes()[0]->getShape()[0]);
1182 return myLanes->empty() ? 1 :
getLanes()[0]->getLengthGeometryFactor();
1196 for (std::vector<MSLane*>::const_iterator i =
myLanes->begin(); i !=
myLanes->end(); ++i) {
1197 (*i)->setMaxSpeed(val,
false,
false, jamThreshold);
1215 auto it = tc.find(t);
1216 if (it != tc.end()) {
1221std::vector<MSTransportable*>
1224 if (includeRiding) {
1225 for (std::vector<MSLane*>::const_iterator i =
myLanes->begin(); i !=
myLanes->end(); ++i) {
1227 for (MSLane::VehCont::const_iterator j = vehs.begin(); j != vehs.end(); ++j) {
1228 const std::vector<MSTransportable*>& persons = (*j)->getPersons();
1229 result.insert(result.end(), persons.begin(), persons.end());
1231 (*i)->releaseVehicles();
1239std::vector<MSTransportable*>
1288 if ((*it)->isTazConnector()) {
1289 i->second.push_back(*it);
1291 const std::vector<MSLane*>* allowed =
allowedLanes(**it, vClass);
1292 if (allowed !=
nullptr && allowed->size() > 0) {
1293 i->second.push_back(*it);
1312 auto i = viaMap.find(vClass);
1313 if (i != viaMap.end()) {
1321 if (viaPair.first->isTazConnector()) {
1322 result.push_back(viaPair);
1324 const std::vector<MSLane*>* allowed =
allowedLanes(*viaPair.first, vClass, ignoreTransientPermissions);
1325 if (allowed !=
nullptr && allowed->size() > 0) {
1326 result.push_back(viaPair);
1347 return (!
myLanes->empty() &&
myLanes->back()->getOpposite() !=
nullptr &&
1357 if (!
myLanes->empty() &&
myLanes->back()->getOpposite() !=
nullptr) {
1358 return &(
myLanes->back()->getOpposite()->getEdge());
1368 for (
const MSLink*
const link : l->getLinkCont()) {
1369 if (!link->havePriority()) {
1383 if (l->getIndex() <= index && !l->allowsChangingRight(svc) && l->getIndex() > 0) {
1385 }
else if (l->getIndex() >= index && !l->allowsChangingLeft(svc) && l->getIndex() < (int)(
myLanes->size() - 1)) {
1407 for (ConstMSEdgeVector::const_iterator it = candidates.begin(); it != candidates.end(); it++) {
1430 int numBidiLanes = 0;
1433 if (l1->getShape().reverse().almostSame(l2->getShape(), POSITION_EPS * 2)) {
1434 l1->setBidiLane(l2);
1449 if (other ==
nullptr || other->
getLanes().size() !=
myLanes->size()) {
1452 std::vector<MSLane*>::const_iterator it1 =
myLanes->begin();
1453 std::vector<MSLane*>::const_reverse_iterator it2 = other->
getLanes().rbegin();
1455 if ((*it1)->getShape().reverse() != (*it2)->getShape()) {
1460 }
while (it1 !=
myLanes->end());
1480 std::vector<SUMOVehicle*>::iterator it = std::find(
myWaiting.begin(),
myWaiting.end(), vehicle);
1495 (!vehicle->hasDeparted() &&
1500 if (!vehicle->isLineStop(position) && vehicle->allowsBoarding(transportable)) {
1502 + transportable->
getID() +
"' at edge '" +
getID() +
"' position " +
toString(position) +
" cannot use waiting vehicle '"
1503 + vehicle->getID() +
"' at position " +
toString(vehicle->getPositionOnLane()) +
" because it is too far away.");
1510std::vector<const SUMOVehicle*>
1512 std::vector<const SUMOVehicle*> result;
1515 std::vector<const MEVehicle*> segmentVehs = segment->getVehicles();
1516 result.insert(result.end(), segmentVehs.begin(), segmentVehs.end());
1520 for (
auto veh : lane->getVehiclesSecure()) {
1521 result.push_back(veh);
1523 lane->releaseVehicles();
1540 if ((l->getPermissions() & filter) != 0) {
1558 if (segment->getCarNumber() > 0) {
1564 if (lane->getVehicleNumber() > 0) {
1578 wtime += segment->getWaitingSeconds();
1582 wtime += lane->getWaitingSeconds();
1604 sum += lane->getNettoOccupancy();
1606 return sum / (double)
myLanes->size();
1618 flow += (double) segment->getCarNumber() * segment->getMeanSpeed();
1620 return 3600 * flow / (*myLanes)[0]->getLength();
1631 occ += segment->getBruttoOccupancy();
1633 return occ / (*myLanes)[0]->getLength() / (double)(
myLanes->size());
1648 if (typeBefore !=
"") {
1650 if (typeBefore == typeAfter) {
1652 }
else if (typeAfter !=
"") {
1656 if (resBefore !=
nullptr && resAfter !=
nullptr) {
1660 for (
const auto& item : *resBefore) {
1662 const double speed = item.second;
1663 const auto it = (*resAfter).find(svc);
1664 if (it != (*resAfter).end()) {
1665 const double speed2 = it->second;
1667 ?
MAX2(speed, speed2) : (speed + speed2) / 2);
1692std::pair<double, SUMOTime>
1697 return std::make_pair(-1, -1);
#define BEST_LANE_LOOKAHEAD
std::vector< const MSEdge * > ConstMSEdgeVector
std::vector< std::pair< const MSEdge *, const MSEdge * > > MSConstEdgePairVector
std::vector< MSEdge * > MSEdgeVector
#define WRITE_WARNINGF(...)
#define WRITE_ERRORF(...)
#define WRITE_WARNING(msg)
std::string time2string(SUMOTime t, bool humanReadable)
convert SUMOTime to string (independently of global format setting)
const SVCPermissions SVCAll
all VClasses are allowed
const SUMOVehicleClass SUMOVehicleClass_MAX
long long int SVCPermissions
bitset where each bit declares whether a certain SVC may use this edge/lane
SUMOVehicleClass
Definition of vehicle classes to differ between different lane usage and authority types.
@ SVC_PRIVATE
private vehicles
@ SVC_IGNORING
vehicles ignoring classes
@ SVC_PEDESTRIAN
pedestrian
DepartLaneDefinition
Possible ways to choose a lane on depart.
@ RANDOM
The lane is chosen randomly.
@ BEST_FREE
The least occupied lane from best lanes.
@ GIVEN
The lane is given.
@ ALLOWED_FREE
The least occupied lane from lanes which allow the continuation.
@ DEFAULT
No information given; use default.
@ FIRST_ALLOWED
The rightmost lane the vehicle may use.
@ FREE
The least occupied lane is used.
@ BEST_PROB
The lane most likely according the speedFactor (from best lanes)
@ RANDOM
A random position is chosen.
@ GIVEN
The position is given.
@ DEFAULT
No information given; use default.
@ FREE
A free position is chosen.
@ BASE
Back-at-zero position.
@ LAST
Insert behind the last vehicle as close as possible to still allow the specified departSpeed....
@ RANDOM_FREE
If a fixed number of random choices fails, a free position is chosen.
@ GIVEN
The speed is given.
const long long int VEHPARS_SPEEDFACTOR_SET
@ SPLIT
The departure is triggered by a train split.
@ CONTAINER_TRIGGERED
The departure is container triggered.
@ TRIGGERED
The departure is person triggered.
@ TURN
The link is a 180 degree turn.
@ STRAIGHT
The link is a straight direction.
SumoXMLEdgeFunc
Numbers representing special SUMO-XML-attribute values for representing edge functions used in netbui...
LinkState
The right-of-way state of a link between two lanes used when constructing a NBTrafficLightLogic,...
@ LINKSTATE_ALLWAY_STOP
This is an uncontrolled, all-way stop link.
@ LINKSTATE_STOP
This is an uncontrolled, minor link, has to stop.
@ LINKSTATE_EQUAL
This is an uncontrolled, right-before-left link.
@ LINKSTATE_DEADEND
This is a dead end link.
@ LINKSTATE_MINOR
This is an uncontrolled, minor link, has to brake.
std::string toString(const T &t, std::streamsize accuracy=gPrecision)
void add(double x, double y, double z=0)
Makes the boundary include the given coordinate.
double distanceTo2D(const Position &p) const
returns the euclidean distance in the x-y-plane
double getParameter(const int index) const
Returns the nth parameter of this distribution.
void updateSegmentsForEdge(const MSEdge &e)
Update segments after loading meso edge type parameters from additional file.
MESegment * getSegmentForEdge(const MSEdge &e, double pos=0)
Get the segment for a given edge at a given position.
A single mesoscopic segment (cell)
bool initialise(MEVehicle *veh, SUMOTime time)
Inserts (emits) vehicle into the segment.
SUMOTime hasSpaceFor(const MEVehicle *const veh, const SUMOTime entryTime, int &qIdx, const bool init=false) const
Returns whether the given vehicle would still fit into the segment.
MESegment * getNextSegment() const
Returns the following segment on the same edge (0 if it is the last).
A vehicle from the mesoscopic point of view.
const SUMOVehicleParameter & getParameter() const
Returns the vehicle's parameter (including departure definition)
double getLength() const
Returns the vehicle's length.
const MSRoute & getRoute() const
Returns the current route.
const MSVehicleType & getVehicleType() const
Returns the vehicle's type definition.
Sorts edges by their ids.
Sorts transportables by their positions.
int operator()(const MSTransportable *const c1, const MSTransportable *const c2) const
comparing operator
A road/street connecting two junctions.
static const MSEdgeVector & getAllEdges()
Returns all edges with a numerical id.
SUMOVehicle * getWaitingVehicle(MSTransportable *transportable, const double position) const
void addToAllowed(const SVCPermissions permissions, std::shared_ptr< const std::vector< MSLane * > > allowedLanes, AllowedLanesCont &laneCont) const
void changeLanes(SUMOTime t) const
Performs lane changing on this edge.
double getBruttoOccupancy() const
SVCPermissions myCombinedPermissions
The union of lane permissions for this edge.
double getFlow() const
return flow based on meanSpead
Boundary myBoundary
The bounding rectangle of end nodes incoming or outgoing edges for taz connectors or of my own start ...
double myWidth
Edge width [m].
AllowedLanesByTarget myAllowedTargets
From target edge to lanes allowed to be used to reach it.
bool isCrossing() const
return whether this edge is a pedestrian crossing
MSLane * getDepartLane(MSVehicle &veh) const
Finds a depart lane for the given vehicle parameters.
SUMOTime myLastFailedInsertionTime
The time of last insertion failure.
std::set< MSTransportable *, ComparatorNumericalIdLess > myContainers
Containers on the edge.
std::pair< double, SUMOTime > getLastBlocked(int index) const
retrieve properties of a blocked vehicle that wants to chane to the lane with the given index
static void clear()
Clears the dictionary.
void setJunctions(MSJunction *from, MSJunction *to)
double getMeanSpeedBike() const
get the mean speed of all bicycles on this edge
static MSEdgeVector myEdges
Static list of edges.
AllowedLanesCont myAllowed
Associative container from vehicle class to allowed-lanes.
double myEmptyTraveltime
the traveltime on the empty edge (cached value for speedup)
void updateMesoType()
update meso segment parameters
bool myAmFringe
whether this edge is at the network fringe
static double getTravelTimeAggregated(const MSEdge *const edge, const SUMOVehicle *const veh, double time)
MSJunction * myToJunction
void checkAndRegisterBiDirEdge(const std::string &bidiID="")
check and register the opposite superposable edge if any
virtual ~MSEdge()
Destructor.
double getDepartPosBound(const MSVehicle &veh, bool upper=true) const
return upper bound for the depart position on this edge
const double myDistance
the kilometrage/mileage at the start of the edge
void clearState()
Remove all transportables before quick-loading state.
MSLane * getDepartLaneMeso(SUMOVehicle &veh) const
consider given departLane parameter (only for validating speeds)
bool hasTransientPermissions() const
const MSEdge * myBidiEdge
the oppositing superposable edge
MSLane * leftLane(const MSLane *const lane) const
Returns the lane left to the one given, 0 if the given lane is leftmost.
std::string myEdgeType
the type of the edge (optionally used during network creation)
const std::vector< MSLane * > & getLanes() const
Returns this edge's lanes.
int getNumDrivingLanes() const
return the number of lanes that permit non-weak modes if the edge allows non weak modes and the numbe...
const MSEdge * getOppositeEdge() const
Returns the opposite direction edge if on exists else a nullptr.
static void parseEdgesList(const std::string &desc, ConstMSEdgeVector &into, const std::string &rid)
Parses the given string assuming it contains a list of edge ids divided by spaces.
double getLengthGeometryFactor() const
return shape.length() / myLength
void addSuccessor(MSEdge *edge, const MSEdge *via=nullptr)
Adds an edge to the list of edges which may be reached from this edge and to the incoming of the othe...
friend class MSLaneChangerSublane
std::vector< SUMOVehicle * > myWaiting
List of waiting vehicles.
const MSEdge * getNormalSuccessor() const
if this edge is an internal edge, return its first normal successor, otherwise the edge itself
const std::vector< MSLane * > * allowedLanes(const MSEdge &destination, SUMOVehicleClass vclass=SVC_IGNORING, bool ignoreTransientPermissions=false) const
Get the allowed lanes to reach the destination-edge.
double getInternalFollowingLengthTo(const MSEdge *followerAfterInternal, SUMOVehicleClass vClass) const
returns the length of all internal edges on the junction until reaching the non-internal edge followe...
bool isNormal() const
return whether this edge is an internal edge
std::vector< MSTransportable * > getSortedPersons(SUMOTime timestep, bool includeRiding=false) const
Returns this edge's persons sorted by pos.
void postLoadInitLaneChanger()
MSEdge(const std::string &id, int numericalID, const SumoXMLEdgeFunc function, const std::string &streetName, const std::string &edgeType, const std::string &routingType, int priority, double distance)
Constructor.
bool isSuperposable(const MSEdge *other)
bool validateDepartSpeed(SUMOVehicle &v) const
check whether the given departSpeed is valid for this edge
double getDistanceTo(const MSEdge *other, const bool doBoundaryEstimate=false) const
optimistic air distance heuristic for use in routing
void setMaxSpeed(double val, double jamThreshold=-1)
Sets a new maximum speed for all lanes (used by TraCI and MSCalibrator)
static MSEdge * dictionaryHint(const std::string &id, const int startIdx)
Returns the MSEdge associated to the key id giving a hint with a numerical id.
MSLaneChanger * myLaneChanger
This member will do the lane-change.
double getOccupancy() const
return mean occupancy on this edges lanes or segments
static int myDefaultDepartLane
const MSConstEdgePairVector & getViaSuccessors(SUMOVehicleClass vClass=SVC_IGNORING, bool ignoreTransientPermissions=false) const
Returns the following edges with internal vias, restricted by vClass.
std::vector< MSTransportable * > getSortedContainers(SUMOTime timestep, bool includeRiding=false) const
Returns this edge's containers sorted by pos.
const SumoXMLEdgeFunc myFunction
the purpose of the edge
MSLane * getProbableLane(const std::vector< MSLane * > *allowed, const SUMOVehicleClass vclass, double departPos, double maxSpeed) const
Finds the most probable lane allowing the vehicle class.
void recalcCache()
Recalculates the cached values.
double getSpeedLimit() const
Returns the speed limit of the edge @caution The speed limit of the first lane is retured; should pro...
SVCPermissions myOriginalCombinedPermissions
The original union of lane permissions for this edge (before temporary modifications)
bool myAmDelayed
whether this edge had a vehicle with less than max speed on it
SVCPermissions myOriginalMinimumPermissions
The original intersection of lane permissions for this edge (before temporary modifications)
std::map< SUMOVehicleClass, MSEdgeVector > myClassesSuccessorMap
The successors available for a given vClass.
SUMOTime decVaporization(SUMOTime t)
Disables vaporization.
MSEdgeVector myPredecessors
The preceeding edges.
bool hasChangeProhibitions(SUMOVehicleClass svc, int index) const
return whether this edge prohibits changing for the given vClass when starting on the given lane inde...
void rebuildAllowedTargets(const bool updateVehicles=true)
static SVCPermissions myMesoIgnoredVClasses
std::vector< std::pair< SVCPermissions, std::shared_ptr< const std::vector< MSLane * > > > > AllowedLanesCont
"Map" from vehicle class to allowed lanes
const MSJunction * getToJunction() const
double getLength() const
return the length of the edge
void initialize(const std::vector< MSLane * > *lanes)
Initialize the edge.
bool myHaveTransientPermissions
whether transient permission changes were applied to this edge or a predecessor
virtual void closeBuilding()
static SVCPermissions getMesoPermissions(SVCPermissions p, SVCPermissions ignoreIgnored=0)
bool canChangeToOpposite() const
whether this edge allows changing to the opposite direction edge
std::set< int > myFailedInsertionMemory
A cache for the rejected insertion attempts. Used to assure that no further insertion attempts are ma...
const MSJunction * getFromJunction() const
double getMeanSpeed() const
get the mean speed
static DictType myDict
Static dictionary to associate string-ids with objects.
std::set< MSTransportable *, ComparatorNumericalIdLess > myPersons
Persons on the edge for drawing and pushbutton.
bool isTazConnector() const
double getDistanceAt(double pos) const
Returns the kilometrage/mileage at the given offset along the edge.
const std::string & getRoutingType() const
Returns the type of the edge.
MSConstEdgePairVector myViaSuccessors
MSEdgeVector mySuccessors
The succeeding edges.
static DepartLaneDefinition myDefaultDepartLaneDefinition
bool isInternal() const
return whether this edge is an internal edge
MSLane * rightLane(const MSLane *const lane) const
Returns the lane right to the one given, 0 if the given lane is rightmost.
double getCurrentTravelTime(const double minSpeed=NUMERICAL_EPS) const
Computes and returns the current travel time for this edge.
std::map< SUMOVehicleClass, MSConstEdgePairVector > myOrigClassesViaSuccessorMap
AllowedLanesByTarget myOrigAllowedTargets
int getNumericalID() const
Returns the numerical id of the edge.
void resetTAZ(MSJunction *junction)
bool isVaporizing() const
Returns whether vehicles on this edge shall be vaporized.
bool insertVehicle(SUMOVehicle &v, SUMOTime time, const bool checkOnly=false, const bool forceCheck=false) const
Tries to insert the given vehicle into the network.
static const Position getStopPosition(const SUMOVehicleParameter::Stop &stop)
return the coordinates of the center of the given stop
void addWaiting(SUMOVehicle *vehicle) const
Adds a vehicle to the list of waiting vehicles.
MSLane * parallelLane(const MSLane *const lane, int offset, bool includeOpposite=true) const
Returns the lane with the given offset parallel to the given lane one or 0 if it does not exist.
ReversedEdge< MSEdge, SUMOVehicle > * myReversedRoutingEdge
a reversed version for backward routing
const std::string & getEdgeType() const
Returns the type of the edge.
static bool dictionary(const std::string &id, MSEdge *edge)
Inserts edge into the static dictionary Returns true if the key id isn't already in the dictionary....
std::vector< const SUMOVehicle * > getVehicles() const
return vehicles on this edges lanes or segments
static void insertIDs(std::vector< std::string > &into)
Inserts IDs of all known edges into the given vector.
double getVehicleMaxSpeed(const SUMOTrafficObject *const veh) const
Returns the maximum speed the vehicle may use on this edge.
SUMOTime incVaporization(SUMOTime t)
Enables vaporization.
MSJunction * myFromJunction
the junctions for this edge
double getMeanFriction() const
get the mean friction over the lanes
std::map< std::string, MSEdge * > DictType
definition of the static dictionary type
bool hasMinorLink() const
whether any lane has a minor link
double getPreference(const SUMOVTypeParameter &pars) const
std::map< SUMOVehicleClass, MSConstEdgePairVector > myClassesViaSuccessorMap
The successors available for a given vClass.
const MSEdge * getNormalBefore() const
if this edge is an internal edge, return its first normal predecessor, otherwise the edge itself
int getVehicleNumber() const
return total number of vehicles on this edges lanes or segments
const MSEdgeVector & getPredecessors() const
virtual void removeTransportable(MSTransportable *t) const
SumoXMLEdgeFunc getFunction() const
Returns the edge type (SumoXMLEdgeFunc)
bool allowsLaneChanging() const
bool isEmpty() const
whether this edge has no vehicles
const MSEdge * getInternalFollowingEdge(const MSEdge *followerAfterInternal, SUMOVehicleClass vClass) const
void buildLaneChanger()
Has to be called after all sucessors and predecessors have been set (after closeBuilding())
double getRoutingSpeed() const
Returns the averaged speed used by the routing device.
virtual void lock() const
grant exclusive access to the mesoscopic state
void removeWaiting(const SUMOVehicle *vehicle) const
Removes a vehicle from the list of waiting vehicles.
MSLane * getFirstAllowed(SUMOVehicleClass vClass, bool defaultFirst=false, int routingMode=0) const
std::vector< double > mySublaneSides
the right side for each sublane on this edge
const MSEdgeVector & getSuccessors(SUMOVehicleClass vClass=SVC_IGNORING) const
Returns the following edges, restricted by vClass.
std::shared_ptr< const std::vector< MSLane * > > myLanes
Container for the edge's lane; should be sorted: (right-hand-traffic) the more left the lane,...
AllowedLanesCont myOrigAllowed
double getWaitingSeconds() const
return accumated waiting time for all vehicles on this edges lanes or segments
int myVaporizationRequests
Vaporizer counter.
double myTimePenalty
flat penalty when computing traveltime
SVCPermissions myMinimumPermissions
The intersection of lane permissions for this edge.
MSLane * getFreeLane(const std::vector< MSLane * > *allowed, const SUMOVehicleClass vclass, double departPos) const
Finds the emptiest lane allowing the vehicle class.
void rebuildAllowedLanes(const bool onInit=false, bool updateVehicles=false)
virtual void addTransportable(MSTransportable *t) const
RailEdge< MSEdge, SUMOVehicle > * myRailwayRoutingEdge
double myLength
the length of the edge (cached value for speedup)
static double gStopTolerance
The tolerance to apply when matching waiting persons and vehicles.
static double gMinorPenalty
(minimum) time penalty for passing a minor link when routing
static double gTLSPenalty
scaled (minimum) time penalty for passing a tls link when routing
static double gTurnaroundPenalty
(minimum) time penalty for passing a turnaround link when routing
static MELoop * gMesoNet
mesoscopic simulation infrastructure
static double gLateralResolution
static int gNumSimThreads
how many threads to use for simulation
static SUMOTime gLaneChangeDuration
static bool gUsingInternalLanes
Information whether the simulation regards internal lanes.
static int gNumThreads
how many threads to use
The base class for an intersection.
const ConstMSEdgeVector & getOutgoing() const
const Position & getPosition(bool secondaryShape=false) const
const ConstMSEdgeVector & getIncoming() const
Performs lane changing of vehicles.
void laneChange(SUMOTime t)
Start lane-change-process for all vehicles on the edge'e lanes.
std::pair< double, SUMOTime > getLastBlocked(int index) const
retrieve properties of a blocked vehicle that wants to chane to the lane with the given index
Representation of a lane in the micro simulation.
bool insertVehicle(MSVehicle &v)
Tries to insert the given vehicle.
bool empty() const
Returns true if there is not a single vehicle on the lane.
std::vector< MSVehicle * > VehCont
Container for vehicles.
double getVehicleMaxSpeed(const SUMOTrafficObject *const veh) const
Returns the lane's maximum speed, given a vehicle's speed limit adaptation.
int getIndex() const
Returns the lane's index.
double getBruttoOccupancy() const
Returns the brutto (including minGaps) occupancy of this lane during the last step.
static bool dictionary(const std::string &id, MSLane *lane)
Static (sic!) container methods {.
MSLane * getOpposite() const
return the neighboring opposite direction lane for lane changing or nullptr
MSEdge & getEdge() const
Returns the lane's edge.
double getWidth() const
Returns the lane's width.
LinkState getState() const
Returns the current state of the link.
bool isTLSControlled() const
bool havePriority() const
Returns whether this link is a major link.
bool isTurnaround() const
The simulated network and simulation perfomer.
static MSNet * getInstance()
Returns the pointer to the unique instance of MSNet (singleton).
double getPreference(const std::string &routingType, const SUMOVTypeParameter &pars) const
retriefe edge type specific routing preference
bool hasJunctionHigherSpeeds() const
return whether the network was built with higher junction speeds
const std::map< SUMOVehicleClass, double > * getRestrictions(const std::string &id) const
Returns the restrictions for an edge type If no restrictions are present, 0 is returned.
void addRestriction(const std::string &id, const SUMOVehicleClass svc, const double speed)
Adds a restriction for an edge type.
const MESegment::MesoEdgeType & getMesoType(const std::string &typeID)
Returns edge type specific meso parameters if no type specific parameters have been loaded,...
int size() const
Returns the number of edges to pass.
MSRouteIterator begin() const
Returns the begin of the list of edges to pass.
static double getAssumedSpeed(const MSEdge *edge, const SUMOVehicle *veh)
return current travel speed assumption
virtual double getEdgePos(SUMOTime now) const
MSStage * getCurrentStage() const
Return the current stage.
bool isPerson() const override
Whether it is a person.
bool isWaitingFor(const SUMOVehicle *vehicle) const
Whether the transportable waits for the given vehicle in the current step.
Representation of a vehicle in the micro simulation.
void updateBestLanes(bool forceRebuild=false, const MSLane *startLane=0)
computes the best lanes to use in order to continue the route
const std::vector< LaneQ > & getBestLanes() const
Returns the description of best lanes to use in order to continue the route.
double getPositionOnLane() const
Get the vehicle's position along the lane.
The car-following model and parameter.
double getLengthWithGap() const
Get vehicle's length including the minimum gap [m].
SUMOVehicleClass getVehicleClass() const
Get this vehicle type's vehicle class.
double getDesiredMaxSpeed() const
Returns the vehicles's desired maximum speed.
const Distribution_Parameterized & getSpeedFactor() const
Returns this type's speed factor.
double getLength() const
Get vehicle's length [m].
double computeChosenSpeedDeviation(SumoRNG *rng, const double minDev=-1.) const
Computes and returns the speed deviation.
Base class for objects which have an id.
const std::string & getID() const
Returns the id.
bool hasParameter(const std::string &key) const
Returns whether the parameter is set.
A point in 2D or 3D with translation and scaling methods.
static double rand(SumoRNG *rng=nullptr)
Returns a random real number in [0, 1)
static const T & getRandomFrom(const std::vector< T > &v, SumoRNG *rng=nullptr)
Returns a random element from the given vector.
Representation of a vehicle, person, or container.
virtual const MSVehicleType & getVehicleType() const =0
Returns the object's "vehicle" type.
virtual double getChosenSpeedFactor() const =0
virtual const SUMOVehicleParameter & getParameter() const =0
Returns the vehicle's parameter (including departure definition)
virtual double getMaxSpeed() const =0
Returns the object's maximum speed (minimum of technical and desired maximum speed)
Structure representing possible vehicle parameter.
Representation of a vehicle.
virtual int getRouteValidity(bool update=true, bool silent=false, std::string *msgReturn=nullptr)=0
computes validity attributes for the current route
virtual void setChosenSpeedFactor(const double factor)=0
Definition of vehicle stop (position and duration)
std::string lane
The lane to stop at.
double startPos
The stopping position start.
double endPos
The stopping position end.
Structure representing possible vehicle parameter.
int departLane
(optional) The lane the vehicle shall depart from (index in edge)
double departSpeed
(optional) The initial speed of the vehicle
DepartLaneDefinition departLaneProcedure
Information how the vehicle shall choose the lane to depart from.
bool wasSet(long long int what) const
Returns whether the given parameter was set.
double departPos
(optional) The position the vehicle shall depart from
DepartSpeedDefinition departSpeedProcedure
Information how the vehicle's initial speed shall be chosen.
std::string id
The vehicle's id.
DepartDefinition departProcedure
Information how the vehicle shall choose the depart time.
DepartPosDefinition departPosProcedure
Information how the vehicle shall choose the departure position.
A scoped lock which only triggers on condition.
std::vector< std::string > getVector()
return vector of strings
edge type specific meso parameters