![]() |
Eclipse SUMO - Simulation of Urban MObility
|
#include <MSSwarmTrafficLightLogic.h>
Public Types | |
Structure definitions | |
typedef std::vector< MSPhaseDefinition * > | Phases |
Definition of a list of phases, being the junction logic. More... | |
typedef std::vector< MSLink * > | LinkVector |
Definition of the list of links that are subjected to this tls. More... | |
typedef std::vector< LinkVector > | LinkVectorVector |
Definition of a list that holds lists of links that do have the same attribute. More... | |
typedef std::vector< MSLane * > | LaneVector |
Definition of the list of arrival lanes subjected to this tls. More... | |
typedef std::vector< LaneVector > | LaneVectorVector |
Definition of a list that holds lists of lanes that do have the same attribute. More... | |
Public Member Functions | ||||
void | activate (MSSOTLPolicy *policy) | |||
void | addPolicy (MSSOTLPolicy *policy) | |||
void | addTo (const StoringVisitor &cont) const | |||
Adds this object to the given container. More... | ||||
void | clearParameter () | |||
Clears the parameter map. More... | ||||
double | getBetaNo () | |||
double | getBetaSp () | |||
double | getChangePlanProbability () | |||
MSSOTLPolicy * | getCurrentPolicy () | |||
Returns the low-level policy currently selected by this high-level tll. More... | ||||
double | getDouble (const std::string &key, const double defaultValue) const | |||
Returns the value for a given key converted to a double. More... | ||||
double | getForgettingCox () | |||
double | getGammaNo () | |||
double | getGammaSp () | |||
const std::string & | getID () const | |||
Returns the id. More... | ||||
double | getLearningCox () | |||
const std::string | getLogicType () const | |||
Returns the type of the logic as a string. More... | ||||
SUMOTime | getMaxCongestionDuration () | |||
const std::string | getParameter (const std::string &key, const std::string &defaultValue="") const | |||
Returns the value for a given key. More... | ||||
const std::map< std::string, std::string > & | getParametersMap () const | |||
Returns the inner key/value map. More... | ||||
double | getPheroMaxVal () | |||
std::vector< MSSOTLPolicy * > & | getPolicies () | |||
Returns the vector of the low-level policies used by this high-level tll. More... | ||||
double | getScaleFactorDispersionIn () | |||
double | getScaleFactorDispersionOut () | |||
double | getThetaInit () | |||
double | getThetaMax () | |||
double | getThetaMin () | |||
void | init (NLDetectorBuilder &nb) | |||
Initialises the tls with sensors on incoming and outgoing lanes Sensors are built in the simulation according to the type of sensor specified in the simulation parameter. More... | ||||
bool | isSelected () const | |||
whether this logic is selected in the GUI More... | ||||
bool | knowsParameter (const std::string &key) const | |||
Returns whether the parameter is known. More... | ||||
MSSwarmTrafficLightLogic (MSTLLogicControl &tlcontrol, const std::string &id, const std::string &programID, const Phases &phases, int step, SUMOTime delay, const std::map< std::string, std::string > ¶meters) | ||||
Constructor without sensors passed. More... | ||||
void | setID (const std::string &newID) | |||
resets the id More... | ||||
void | setParameter (const std::string &key, const std::string &value) | |||
Sets a parameter. More... | ||||
void | setPhases (const Phases &phases, int index) | |||
Replaces the phases and set the phase index. More... | ||||
SUMOTime | trySwitch () | |||
Switches to the next phase. More... | ||||
void | unsetParameter (const std::string &key) | |||
Removes a parameter. More... | ||||
void | updateParameter (const std::map< std::string, std::string > &mapArg) | |||
Adds or updates all given parameters from the map. More... | ||||
void | writeParams (OutputDevice &device) const | |||
write Params in the given outputdevice More... | ||||
~MSSwarmTrafficLightLogic () | ||||
Static Information Retrieval | ||||
Switches to the next phase
| ||||
int | getPhaseNumber () const | |||
Returns the number of phases. More... | ||||
const Phases & | getPhases () const | |||
Returns the phases of this tls program. More... | ||||
const MSPhaseDefinition & | getPhase (int givenstep) const | |||
Returns the definition of the phase from the given position within the plan. More... | ||||
Dynamic Information Retrieval | ||||
int | getCurrentPhaseIndex () const | |||
Returns the current index within the program. More... | ||||
const MSPhaseDefinition & | getCurrentPhaseDef () const | |||
Returns the definition of the current phase. More... | ||||
Conversion between time and phase | ||||
SUMOTime | getPhaseIndexAtTime (SUMOTime simStep) const | |||
Returns the index of the logic at the given simulation step. More... | ||||
SUMOTime | getOffsetFromIndex (int index) const | |||
Returns the position (start of a phase during a cycle) from of a given step. More... | ||||
int | getIndexFromOffset (SUMOTime offset) const | |||
Returns the step (the phasenumber) of a given position of the cycle. More... | ||||
Changing phases and phase durations | ||||
void | changeStepAndDuration (MSTLLogicControl &tlcontrol, SUMOTime simStep, int step, SUMOTime stepDuration) | |||
Changes the current phase and her duration. More... | ||||
Handling of controlled links | ||||
virtual void | addLink (MSLink *link, MSLane *lane, int pos) | |||
Adds a link on building. More... | ||||
void | ignoreLinkIndex (int pos) | |||
ignore pedestrian crossing index in mesosim More... | ||||
virtual void | adaptLinkInformationFrom (const MSTrafficLightLogic &logic) | |||
Applies information about controlled links and lanes from the given logic. More... | ||||
std::map< MSLink *, LinkState > | collectLinkStates () const | |||
Returns the (uncontrolled) states of the controlled links. More... | ||||
void | resetLinkStates (const std::map< MSLink *, LinkState > &vals) const | |||
Resets the states of controlled links. More... | ||||
Switching and setting current rows | ||||
bool | setTrafficLightSignals (SUMOTime t) const | |||
Applies the current signal states to controlled links. More... | ||||
Static Information Retrieval | ||||
const std::string & | getProgramID () const | |||
Returns this tl-logic's id. More... | ||||
const LaneVectorVector & | getLaneVectors () const | |||
Returns the list of lists of all lanes controlled by this tls. More... | ||||
const LaneVector & | getLanesAt (int i) const | |||
Returns the list of lanes that are controlled by the signals at the given position. More... | ||||
const LinkVectorVector & | getLinks () const | |||
Returns the list of lists of all affected links. More... | ||||
const LinkVector & | getLinksAt (int i) const | |||
Returns the list of links that are controlled by the signals at the given position. More... | ||||
int | getLinkIndex (const MSLink *const link) const | |||
Returns the index of the given link. More... | ||||
Dynamic Information Retrieval | ||||
SUMOTime | getDefaultCycleTime () const | |||
Returns the cycle time (in ms) More... | ||||
SUMOTime | getNextSwitchTime () const | |||
Returns the assumed next switch time. More... | ||||
SUMOTime | getSpentDuration () const | |||
Returns the duration spent in the current phase. More... | ||||
Changing phases and phase durations | ||||
void | addOverridingDuration (SUMOTime duration) | |||
Changes the duration of the next phase. More... | ||||
void | setCurrentDurationIncrement (SUMOTime delay) | |||
Delays current phase by the given delay. More... | ||||
Static Public Member Functions | |
template<class T > | |
static std::string | getIDSecure (const T *obj, const std::string &fallBack="NULL") |
get an identifier for Named-like object which may be Null More... | |
Protected Types | |
typedef std::map< const std::string, std::vector< MSPushButton * > > | PhasePushButtons |
Protected Member Functions | |
bool | allowLine (MSLane *) |
Check if a lane is allowed to be added to the maps pheromoneInputLanes and pheromoneOutputLanes Control in this function if the lane is a walking area, a crossing, or if only pedestrian are allowed. Return true if the lane has to be added, false otherwise. More... | |
double | calculateEtaDiff () |
Method that should calculate the valor of eta a coefficient to evaluate the current policy's work. This eta is based on the difference between the number of vehicles that enters a tl and the ones that exit it. It consider vehicles on a lane with a tl set to red as well to determinate policy work. More... | |
double | calculateEtaRatio () |
double | calculatePhi (int factor) |
Method that should calculate the valor of phi a coefficient to amplify/attenuate eta based on a factor. The factor depends on the situation when the function is called; should be the number of cars in the target lanes or the number of cars in the lanes with a red tl. More... | |
bool | canRelease () |
void | choosePolicy (double phero_in, double phero_out) |
void | choosePolicy (double phero_in, double phero_out, double dispersion_in, double dispersion_out) |
virtual SUMOTime | computeReturnTime () |
int | countVehicles (MSPhaseDefinition phase) |
int | decideNextPhase () |
void | decidePolicy () |
Decide the current policy according to pheromone levels The decision reflects on currentPolicy value. More... | |
MSSOTLE2Sensors * | getCountSensors () |
Return the sensors that count the passage of vehicles in and out of the tl. More... | |
SUMOTime | getCurrentPhaseElapsed () |
double | getDispersionForInputLanes (double average_phero_in) |
double | getDispersionForOutputLanes (double average_phero_out) |
double | getDistanceOfMaxPheroForInputLanes () |
double | getDistanceOfMaxPheroForOutputLanes () |
double | getInputSensorsLength () |
std::string | getLaneLightState (const std::string &laneId) |
double | getOutputSensorsLength () |
int | getPhaseIndexWithMaxCTS () |
double | getPheromoneForInputLanes () |
double | getPheromoneForOutputLanes () |
std::string | getPoliciesParam () |
int | getReinforcementMode () |
MSSOTLSensors * | getSensors () |
double | getSpeedThreshold () |
int | getThreshold () |
void | initScaleFactorDispersionIn (int lanes_in) |
void | initScaleFactorDispersionOut (int lanes_out) |
bool | isPushButtonPressed () |
bool | isThresholdPassed () |
void | logStatus () |
void | proceedToNextStep () |
Proceed to the next step. More... | |
void | resetLaneCheck () |
void | resetPheromone () |
Resets pheromone levels. More... | |
void | setStep (int step) |
Forces a specific step. More... | |
void | updatePheromoneLevels () |
Update pheromone levels Pheromone on input lanes is costantly updated Pheromone follows a discrete-time dynamic law "pheromone(k+1) = beta*pheromone(k) + gamma * sensed_val(k)". More... | |
void | updatePheromoneLevels (MSLaneId_PheromoneMap &, std::string, const double, const double) |
Utility method to avoid code duplication. More... | |
void | updateSensitivities () |
Protected Attributes | |
int | carsIn |
int | carsOut |
SUMOTime | congestion_steps |
bool | gotTargetLane |
When true indicates that we've already acquired the target lanes for this particular phase. More... | |
int | inTarget |
LaneCheckMap | laneCheck |
Map to check if a lane was already controlled during the elaboration of eta. More... | |
SUMOTime | lastThetaSensitivityUpdate |
bool | logData |
double | m_derivativeAlpha |
std::map< std::string, CircularBuffer< double > * > | m_derivativeHistory |
std::map< std::string, std::vector< int > > | m_laneIndexMap |
int | m_losCounter |
int | m_losMaxLimit |
std::map< std::string, CircularBuffer< double > * > | m_meanSpeedHistory |
std::map< std::string, std::string > | m_pheroLevelLog |
PhasePushButtons | m_pushButtons |
bool | m_useVehicleTypesWeights |
bool | mustChange |
When true, indicates that the current policy MUST be changed. It's used to force the exit from the congestion policy. More... | |
SUMOTime | myCurrentDurationIncrement |
A value for enlarge the current duration. More... | |
SUMOTime | myDefaultCycleTime |
The cycle time (without changes) More... | |
std::string | myID |
The name of the object. More... | |
std::set< int > | myIgnoredIndices |
list of indices that are ignored in mesoscopic simulatino More... | |
LaneVectorVector | myLanes |
The list of LaneVectors; each vector contains the incoming lanes that belong to the same link index. More... | |
LinkVectorVector | myLinks |
The list of LinkVectors; each vector contains the links that belong to the same link index. More... | |
const TrafficLightType | myLogicType |
The type of the logic. More... | |
std::vector< SUMOTime > | myOverridingTimes |
A list of duration overrides. More... | |
Phases | myPhases |
The list of phases this logic uses. More... | |
const std::string | myProgramID |
The id of the logic. More... | |
int | myStep |
The current step. More... | |
SwitchCommand * | mySwitchCommand |
The current switch command. More... | |
int | notTarget |
MSLaneId_PheromoneMap | pheromoneInputLanes |
This pheronome is an indicator of congestion on input lanes. Its levels refer to the average speed of vehicles passing the input lane: the lower the speed the higher the pheromone. These levels are updated on every input lane, independently on lights state. More... | |
MSLaneId_PheromoneMap | pheromoneOutputLanes |
This pheromone is an indicator of congestion on output lanes. Its levels refer to the average speed of vehicles passing the output lane: the lower the speed the higher the pheromone. These levels are updated on every output lane, independently on lights state. More... | |
double | scaleFactorDispersionIn |
double | scaleFactorDispersionOut |
bool | skipEta |
When true indicates that we can skip the evaluation of eta since we've a congestion policy that is lasting too much. More... | |
std::ofstream | swarmLogFile |
LaneIdVector | targetLanes |
A copy of the target lanes of this phase. More... | |
Static Protected Attributes | |
static const LaneVector | myEmptyLaneVector |
An empty lane vector. More... | |
Private Member Functions | |
void | checkPhases () |
void | deletePhases () |
frees memory responsibilities More... | |
double | getDecayConstant () |
int | getMode () |
int | getTargetPhaseMaxLastSelection () |
void | initMesoTLSPenalties () |
initialize optional meso penalties More... | |
bool | isDecayThresholdActivated () |
void | resetCTS (int phaseStep) |
void | setToATargetPhase () |
void | setupCTS () |
void | updateCTS () |
void | updateDecayThreshold () |
Private Attributes | |
MSSOTLPolicy * | currentPolicy |
double | decayThreshold |
int | lastChain |
std::map< int, SUMOTime > | lastCheckForTargetPhase |
MSSOTLE2Sensors * | myCountSensors |
std::map< std::string, std::string > | myMap |
The key->value map. More... | |
MSSOTLSensors * | mySensors |
std::vector< MSSOTLPolicy * > | policies |
bool | sensorsSelfBuilt |
std::map< int, SUMOTime > | targetPhasesCTS |
std::map< int, int > | targetPhasesLastSelection |
Definition at line 101 of file MSSwarmTrafficLightLogic.h.
|
inherited |
Definition of the list of arrival lanes subjected to this tls.
Definition at line 71 of file MSTrafficLightLogic.h.
|
inherited |
Definition of a list that holds lists of lanes that do have the same attribute.
Definition at line 74 of file MSTrafficLightLogic.h.
|
inherited |
Definition of the list of links that are subjected to this tls.
Definition at line 65 of file MSTrafficLightLogic.h.
|
inherited |
Definition of a list that holds lists of links that do have the same attribute.
Definition at line 68 of file MSTrafficLightLogic.h.
|
protectedinherited |
Definition at line 117 of file MSSOTLTrafficLightLogic.h.
|
inherited |
Definition of a list of phases, being the junction logic.
Definition at line 62 of file MSTrafficLightLogic.h.
MSSwarmTrafficLightLogic::MSSwarmTrafficLightLogic | ( | MSTLLogicControl & | tlcontrol, |
const std::string & | id, | ||
const std::string & | programID, | ||
const Phases & | phases, | ||
int | step, | ||
SUMOTime | delay, | ||
const std::map< std::string, std::string > & | parameters | ||
) |
Constructor without sensors passed.
[in] | tlcontrol | The tls control responsible for this tls |
[in] | id | This tls' id |
[in] | programID | This tls' sub-id (program id) |
[in] | phases | Definitions of the phases |
[in] | step | The initial phase index |
[in] | delay | The time to wait before the first switch |
[in] | parameters | Parameters defined for the tll |
Definition at line 28 of file MSSwarmTrafficLightLogic.cpp.
References MSSOTLHiLevelTrafficLightLogic::addPolicy(), congestion_steps, DBG, MSSOTLPolicy::getDesirabilityAlgorithm(), getMaxCongestionDuration(), MSSOTLPolicyDesirability::getMessage(), MSSOTLPolicy::getName(), Parameterised::getParameter(), MSSOTLHiLevelTrafficLightLogic::getPolicies(), getPoliciesParam(), MSSOTLPolicy::getThetaSensitivity(), gotTargetLane, m_useVehicleTypesWeights, mustChange, MSSOTLHiLevelTrafficLightLogic::policies, skipEta, WRITE_ERROR, and WRITE_MESSAGE.
MSSwarmTrafficLightLogic::~MSSwarmTrafficLightLogic | ( | ) |
Definition at line 75 of file MSSwarmTrafficLightLogic.cpp.
References logData, m_derivativeHistory, m_meanSpeedHistory, and swarmLogFile.
|
inherited |
Definition at line 53 of file MSSOTLHiLevelTrafficLightLogic.cpp.
References MSSOTLHiLevelTrafficLightLogic::currentPolicy.
Referenced by MSDeterministicHiLevelTrafficLightLogic::choosePolicy(), and choosePolicy().
|
virtualinherited |
Applies information about controlled links and lanes from the given logic.
If we load a logic after the network has been loaded, we do not get the information about controlled links afterwards. We have to copy them from a previously loaded logic.
[in] | logic | The logic to use the information about controlled links/lanes from |
Reimplemented in MSRailSignal, MSRailCrossing, and MSOffTrafficLightLogic.
Definition at line 214 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myIgnoredIndices, MSTrafficLightLogic::myLanes, and MSTrafficLightLogic::myLinks.
Referenced by MSOffTrafficLightLogic::adaptLinkInformationFrom(), MSRailCrossing::adaptLinkInformationFrom(), MSRailSignal::adaptLinkInformationFrom(), and MSTLLogicControl::TLSLogicVariants::addLogic().
Adds a link on building.
[in] | link | The controlled link |
[in] | lane | The lane this link starts at |
[in] | pos | The link's index (signal group) within this program |
Reimplemented in MSRailSignal, and MSRailCrossing.
Definition at line 196 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::getCurrentPhaseDef(), MSNet::getInstance(), MSTrafficLightLogic::myLanes, MSTrafficLightLogic::myLinks, and MSLink::setTLState().
Referenced by MSRailCrossing::addLink(), and MSRailSignal::addLink().
|
inherited |
Changes the duration of the next phase.
[in] | duration | The new duration |
Definition at line 300 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myOverridingTimes.
|
inherited |
Definition at line 45 of file MSSOTLHiLevelTrafficLightLogic.cpp.
References MSSOTLHiLevelTrafficLightLogic::policies.
Referenced by MSDeterministicHiLevelTrafficLightLogic::MSDeterministicHiLevelTrafficLightLogic(), and MSSwarmTrafficLightLogic().
|
inlineinherited |
Adds this object to the given container.
[in,filled] | cont The container to add this item to |
Definition at line 127 of file Named.h.
References Named::StoringVisitor::add().
|
protected |
Check if a lane is allowed to be added to the maps pheromoneInputLanes and pheromoneOutputLanes Control in this function if the lane is a walking area, a crossing, or if only pedestrian are allowed. Return true if the lane has to be added, false otherwise.
Definition at line 91 of file MSSwarmTrafficLightLogic.cpp.
References MSLane::getEdge(), MSLane::getPermissions(), MSEdge::isCrossing(), MSEdge::isWalkingArea(), SVC_BICYCLE, and SVC_PEDESTRIAN.
Referenced by init().
|
protected |
Method that should calculate the valor of eta a coefficient to evaluate the current policy's work. This eta is based on the difference between the number of vehicles that enters a tl and the ones that exit it. It consider vehicles on a lane with a tl set to red as well to determinate policy work.
Definition at line 680 of file MSSwarmTrafficLightLogic.cpp.
References calculatePhi(), carsIn, carsOut, DBG, MSSOTLTrafficLightLogic::getCountSensors(), MSSOTLHiLevelTrafficLightLogic::getCurrentPolicy(), Named::getID(), MSNet::getInstance(), MSSOTLPolicy::getName(), MSSOTLE2Sensors::getPassedVeh(), inTarget, laneCheck, MSTrafficLightLogic::myLanes, MSTrafficLightLogic::myLinks, notTarget, resetLaneCheck(), MSSOTLE2Sensors::subtractPassedVeh(), targetLanes, time2string(), and WRITE_MESSAGE.
Referenced by updateSensitivities().
|
protected |
Definition at line 870 of file MSSwarmTrafficLightLogic.cpp.
References calculatePhi(), carsIn, carsOut, DBG, MSSOTLTrafficLightLogic::getCountSensors(), MSSOTLHiLevelTrafficLightLogic::getCurrentPolicy(), Named::getID(), MSNet::getInstance(), MSSOTLPolicy::getName(), MSSOTLE2Sensors::getPassedVeh(), inTarget, laneCheck, MSTrafficLightLogic::myLanes, MSTrafficLightLogic::myLinks, notTarget, resetLaneCheck(), MSSOTLE2Sensors::subtractPassedVeh(), targetLanes, time2string(), and WRITE_MESSAGE.
Referenced by updateSensitivities().
|
protected |
Method that should calculate the valor of phi a coefficient to amplify/attenuate eta based on a factor. The factor depends on the situation when the function is called; should be the number of cars in the target lanes or the number of cars in the lanes with a red tl.
[in] | factor | - the value to consider to compute this coefficient. |
Definition at line 669 of file MSSwarmTrafficLightLogic.cpp.
Referenced by calculateEtaDiff(), and calculateEtaRatio().
|
protectedvirtual |
Implements MSSOTLTrafficLightLogic.
Definition at line 1139 of file MSSwarmTrafficLightLogic.cpp.
References MSSOTLPolicy::canRelease(), MSSOTLTrafficLightLogic::countVehicles(), DBG, MSPhasedTrafficLightLogic::getCurrentPhaseDef(), MSSOTLTrafficLightLogic::getCurrentPhaseElapsed(), MSSOTLHiLevelTrafficLightLogic::getCurrentPolicy(), MSSOTLTrafficLightLogic::isPushButtonPressed(), MSSOTLTrafficLightLogic::isThresholdPassed(), time2string(), and WRITE_MESSAGE.
|
virtualinherited |
Changes the current phase and her duration.
[in] | tlcontrol | The responsible traffic lights control |
[in] | simStep | The current simulation step |
[in] | step | Index of the phase to use |
[in] | stepDuration | The left duration of the phase |
Implements MSTrafficLightLogic.
Definition at line 183 of file MSPhasedTrafficLightLogic.cpp.
References MSEventControl::addEvent(), MSTrafficLightLogic::SwitchCommand::deschedule(), MSNet::getBeginOfTimestepEvents(), MSNet::getInstance(), MSPhasedTrafficLightLogic::myStep, and MSTrafficLightLogic::mySwitchCommand.
|
privateinherited |
Definition at line 89 of file MSSOTLTrafficLightLogic.cpp.
References MsgHandler::getErrorInstance(), MSPhasedTrafficLightLogic::getPhase(), MSPhasedTrafficLightLogic::getPhases(), MsgHandler::inform(), MSPhaseDefinition::isUndefined(), Named::myID, and toString().
Referenced by MSSOTLTrafficLightLogic::MSSOTLTrafficLightLogic().
|
protected |
Definition at line 1134 of file MSSwarmTrafficLightLogic.cpp.
References choosePolicy().
|
protected |
Definition at line 1088 of file MSSwarmTrafficLightLogic.cpp.
References MSSOTLHiLevelTrafficLightLogic::activate(), DBG, Named::getID(), MSSOTLHiLevelTrafficLightLogic::getPolicies(), m_useVehicleTypesWeights, RandHelper::rand(), and WRITE_MESSAGE.
Referenced by choosePolicy(), decidePolicy(), and init().
|
inherited |
Clears the parameter map.
Definition at line 99 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NLHandler::beginEdgeParsing(), GNECrossing::setGenericParametersStr(), GNEConnection::setGenericParametersStr(), GNEVehicleType::setGenericParametersStr(), GNELane::setGenericParametersStr(), GNEPoly::setGenericParametersStr(), GNEStop::setGenericParametersStr(), GNEPOI::setGenericParametersStr(), GNEJunction::setGenericParametersStr(), GNERide::setGenericParametersStr(), GNEPersonTrip::setGenericParametersStr(), GNEWalk::setGenericParametersStr(), GNEEdge::setGenericParametersStr(), GNERoute::setGenericParametersStr(), GNEPerson::setGenericParametersStr(), GNEAdditional::setGenericParametersStr(), and GNEVehicle::setGenericParametersStr().
Returns the (uncontrolled) states of the controlled links.
Definition at line 222 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myLinks.
|
inlineprotectedvirtual |
Reimplemented from MSSOTLTrafficLightLogic.
Definition at line 228 of file MSSwarmTrafficLightLogic.h.
References DELTA_T.
|
protectedinherited |
Definition at line 265 of file MSSOTLTrafficLightLogic.cpp.
References MSSOTLSensors::countVehicles(), MSSOTLTrafficLightLogic::getMode(), MSPhaseDefinition::getTargetLaneSet(), MSPhaseDefinition::isTarget(), MAX2(), MSSOTLTrafficLightLogic::mySensors, and WRITE_ERROR.
Referenced by MSDeterministicHiLevelTrafficLightLogic::canRelease(), MSSOTLPolicyBasedTrafficLightLogic::canRelease(), canRelease(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSOTLPolicyBasedTrafficLightLogic::decideNextPhase(), decideNextPhase(), and MSSOTLTrafficLightLogic::updateCTS().
|
protectedvirtual |
Reimplemented from MSSOTLTrafficLightLogic.
Definition at line 216 of file MSSwarmTrafficLightLogic.cpp.
References congestion_steps, MSSOTLTrafficLightLogic::countVehicles(), DBG, MSSOTLPolicy::decideNextPhase(), decidePolicy(), MSPhasedTrafficLightLogic::getCurrentPhaseDef(), MSSOTLTrafficLightLogic::getCurrentPhaseElapsed(), MSPhasedTrafficLightLogic::getCurrentPhaseIndex(), MSSOTLHiLevelTrafficLightLogic::getCurrentPolicy(), MSNet::getCurrentTimeStep(), Named::getID(), MSNet::getInstance(), getMaxCongestionDuration(), MsgHandler::getMessageInstance(), MSSOTLPolicy::getName(), MSSOTLTrafficLightLogic::getPhaseIndexWithMaxCTS(), getReinforcementMode(), MSPhaseDefinition::getState(), MSPhaseDefinition::getTargetLaneSet(), gotTargetLane, MsgHandler::inform(), MSPhaseDefinition::isCommit(), MSSOTLTrafficLightLogic::isPushButtonPressed(), MSPhaseDefinition::isTarget(), MSSOTLTrafficLightLogic::isThresholdPassed(), mustChange, resetPheromone(), skipEta, targetLanes, time2string(), updatePheromoneLevels(), updateSensitivities(), and WRITE_MESSAGE.
|
protectedvirtual |
Decide the current policy according to pheromone levels The decision reflects on currentPolicy value.
Implements MSSOTLHiLevelTrafficLightLogic.
Definition at line 633 of file MSSwarmTrafficLightLogic.cpp.
References ANALYSIS_DBG, choosePolicy(), congestion_steps, getChangePlanProbability(), MSSOTLHiLevelTrafficLightLogic::getCurrentPolicy(), MSNet::getCurrentTimeStep(), getDistanceOfMaxPheroForInputLanes(), getDistanceOfMaxPheroForOutputLanes(), Named::getID(), MSNet::getInstance(), MSSOTLPolicy::getName(), getPheromoneForInputLanes(), getPheromoneForOutputLanes(), mustChange, RandHelper::rand(), skipEta, time2string(), and WRITE_MESSAGE.
Referenced by decideNextPhase().
|
privateinherited |
frees memory responsibilities
Definition at line 205 of file MSPhasedTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::myPhases.
Referenced by MSPhasedTrafficLightLogic::setPhases().
|
inline |
Definition at line 137 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by updatePheromoneLevels().
|
inline |
Definition at line 145 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by updatePheromoneLevels().
|
inline |
Definition at line 153 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by decidePolicy().
|
inlineprotectedinherited |
Return the sensors that count the passage of vehicles in and out of the tl.
Definition at line 183 of file MSSOTLTrafficLightLogic.h.
References MSSOTLTrafficLightLogic::myCountSensors.
Referenced by calculateEtaDiff(), calculateEtaRatio(), and updatePheromoneLevels().
|
virtualinherited |
Returns the definition of the current phase.
Implements MSTrafficLightLogic.
Definition at line 132 of file MSPhasedTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::myPhases, and MSPhasedTrafficLightLogic::myStep.
Referenced by MSSOTLPhaseTrafficLightLogic::canRelease(), MSSOTLWaveTrafficLightLogic::canRelease(), MSDeterministicHiLevelTrafficLightLogic::canRelease(), MSSOTLPolicyBasedTrafficLightLogic::canRelease(), canRelease(), MSSOTLTrafficLightLogic::computeReturnTime(), MSSOTLWaveTrafficLightLogic::countVehicles(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSOTLPolicyBasedTrafficLightLogic::decideNextPhase(), MSSOTLTrafficLightLogic::decideNextPhase(), decideNextPhase(), MSSOTLTrafficLightLogic::getCurrentPhaseElapsed(), getLaneLightState(), MSSOTLTrafficLightLogic::isPushButtonPressed(), MSSOTLTrafficLightLogic::isThresholdPassed(), MSSOTLTrafficLightLogic::trySwitch(), and MSSOTLTrafficLightLogic::updateDecayThreshold().
|
protectedinherited |
Definition at line 359 of file MSSOTLTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::getCurrentPhaseDef(), MSNet::getCurrentTimeStep(), MSNet::getInstance(), and MSPhaseDefinition::myLastSwitch.
Referenced by MSSOTLPhaseTrafficLightLogic::canRelease(), MSSOTLWaveTrafficLightLogic::canRelease(), MSDeterministicHiLevelTrafficLightLogic::canRelease(), MSSOTLPolicyBasedTrafficLightLogic::canRelease(), canRelease(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSOTLPolicyBasedTrafficLightLogic::decideNextPhase(), decideNextPhase(), and MSSOTLTrafficLightLogic::trySwitch().
|
virtualinherited |
Returns the current index within the program.
Implements MSTrafficLightLogic.
Definition at line 126 of file MSPhasedTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::myStep.
Referenced by MSSOTLWaveTrafficLightLogic::canRelease(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSOTLPolicyBasedTrafficLightLogic::decideNextPhase(), MSSOTLTrafficLightLogic::decideNextPhase(), decideNextPhase(), MSSOTLTrafficLightLogic::init(), and MSSOTLTrafficLightLogic::trySwitch().
|
inlineinherited |
Returns the low-level policy currently selected by this high-level tll.
Definition at line 91 of file MSSOTLHiLevelTrafficLightLogic.h.
References MSSOTLHiLevelTrafficLightLogic::currentPolicy.
Referenced by calculateEtaDiff(), calculateEtaRatio(), MSDeterministicHiLevelTrafficLightLogic::canRelease(), canRelease(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), decideNextPhase(), MSDeterministicHiLevelTrafficLightLogic::decidePolicy(), decidePolicy(), init(), and updateSensitivities().
|
inlineprivateinherited |
Definition at line 287 of file MSSOTLTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by MSSOTLTrafficLightLogic::updateDecayThreshold().
|
inlineinherited |
Returns the cycle time (in ms)
Definition at line 268 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myDefaultCycleTime.
Referenced by NLJunctionControlBuilder::closeTrafficLightLogic(), and MSTLLogicControl::WAUTSwitchProcedure::isPosAtGSP().
|
protected |
Definition at line 532 of file MSSwarmTrafficLightLogic.cpp.
References DBG, getScaleFactorDispersionIn(), pheromoneInputLanes, and WRITE_MESSAGE.
|
protected |
Definition at line 549 of file MSSwarmTrafficLightLogic.cpp.
References DBG, getScaleFactorDispersionOut(), pheromoneOutputLanes, and WRITE_MESSAGE.
|
protected |
Definition at line 564 of file MSSwarmTrafficLightLogic.cpp.
References DBG, pheromoneInputLanes, and WRITE_MESSAGE.
Referenced by decidePolicy().
|
protected |
Definition at line 599 of file MSSwarmTrafficLightLogic.cpp.
References DBG, pheromoneOutputLanes, and WRITE_MESSAGE.
Referenced by decidePolicy().
|
inherited |
Returns the value for a given key converted to a double.
[in] | key | The key to ask for |
[in] | defaultValue | The default value to return if no value is stored under the key |
Definition at line 81 of file Parameterised.cpp.
References Parameterised::myMap, StringUtils::toDouble(), and WRITE_WARNING.
Referenced by MSDevice_Battery::buildVehicleDevices(), MSSOTLPolicy5DStimulus::getStimCox(), MSSOTLPolicy5DStimulus::getStimCoxExpDispersionIn(), MSSOTLPolicy5DStimulus::getStimCoxExpDispersionOut(), MSSOTLPolicy5DStimulus::getStimCoxExpIn(), MSSOTLPolicy5DStimulus::getStimCoxExpOut(), MSSOTLPolicy5DStimulus::getStimDivisorDispersionIn(), MSSOTLPolicy5DStimulus::getStimDivisorDispersionOut(), MSSOTLPolicy5DStimulus::getStimDivisorIn(), MSSOTLPolicy5DStimulus::getStimDivisorOut(), MSSOTLPolicy5DStimulus::getStimOffsetDispersionIn(), MSSOTLPolicy5DStimulus::getStimOffsetDispersionOut(), MSSOTLPolicy5DStimulus::getStimOffsetIn(), MSSOTLPolicy5DStimulus::getStimOffsetOut(), and MSSOTLPolicy5DFamilyStimulus::MSSOTLPolicy5DFamilyStimulus().
|
inline |
Definition at line 173 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by updateSensitivities().
|
inline |
Definition at line 141 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by updatePheromoneLevels().
|
inline |
Definition at line 149 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by updatePheromoneLevels().
|
inlineinherited |
Returns the id.
Definition at line 77 of file Named.h.
References Named::myID.
Referenced by MSLCM_LC2013::adaptSpeedToPedestrians(), MSVehicle::adaptToLeader(), MSVehicle::adaptToLeaders(), MSPModel_Remote::add(), MSPModel_Striping::add(), LaneStoringVisitor::add(), MSVehicleTransfer::add(), PCPolyContainer::add(), MSDetectorControl::add(), Named::StoringVisitor::add(), ShapeContainer::add(), NLTriggerBuilder::addAccess(), RORouteDef::addAlternative(), MSLane::addApproachingLane(), NBLoadedSUMOTLDef::addConnection(), NLHandler::addConnection(), MSPModel_Striping::addCrossingVehs(), RODFDetectorCon::addDetector(), RONet::addEdge(), NBParkingCont::addEdges2Keep(), ROJTREdge::addFollowerProbability(), MSTLLogicControl::TLSLogicVariants::addLogic(), MSLane::addNeigh(), RONet::addNode(), NIImporter_SUMO::addPhase(), GUIEdge::addRerouter(), RONet::addRouteDef(), NIXMLEdgesHandler::addSplit(), NBTrafficLightLogic::addStep(), ROVehicle::addStop(), MSRouteHandler::addStop(), MSVehicle::addStop(), MSNet::addStoppingPlace(), MSVehicle::addTraciStop(), MSVehicle::addTraciStopAtStoppingPlace(), AGActivityTripWriter::addTrip(), NIXMLConnectionsHandler::addWalkingArea(), libsumo::Helper::applySubscriptionFilters(), GUITrafficLightLogicWrapper::begin2TrackPhases(), MSTransportable::Stage_Waiting::beginEventOutput(), MSTransportable::Stage_Driving::beginEventOutput(), MSPModel_Striping::blockedAtDist(), MSLink::blockedAtTime(), MSLink::blockedByFoe(), NLEdgeControlBuilder::build(), NIVisumTL::build(), RODFNet::buildApproachList(), MSSOTLE2Sensors::buildContinueSensior(), MSSOTLE2Sensors::buildCountSensorForLane(), MSSOTLE2Sensors::buildCountSensorForOutLane(), NBNode::buildCrossings(), NBNode::buildCrossingsAndWalkingAreas(), NIImporter_VISUM::buildDistrictNode(), MSRailSignal::LinkInfo::buildDriveWay(), NLDetectorBuilder::buildE2Detector(), RODFNet::buildEdgeFlowMap(), GNETLSEditorFrame::buildIinternalLanes(), NBEdge::buildInnerEdges(), NGEdge::buildNBEdge(), NIVissimEdge::buildNBEdge(), NBRampsComputer::buildOffRamp(), NBRampsComputer::buildOnRamp(), MSRailSignal::DriveWay::buildRoute(), MELoop::buildSegmentsFor(), MSSOTLE2Sensors::buildSensorForLane(), MSSOTLE2Sensors::buildSensorForOutLane(), NBNode::buildWalkingAreas(), MSBaseVehicle::calculateArrivalParams(), calculateEtaDiff(), calculateEtaRatio(), MSSOTLPolicyBasedTrafficLightLogic::canRelease(), MSVehicle::canReverse(), MSLaneChanger::changeOpposite(), MELoop::changeSegment(), MSSimpleTrafficLightLogic::changeStepAndDuration(), MSEdge::checkAndRegisterBiDirEdge(), MSRailSignal::DriveWay::checkCrossingFlanks(), MSLane::checkForPedestrians(), MSVehicleTransfer::checkInsertions(), MSVehicle::checkLinkLeader(), MSDevice_Battery::checkParam(), MSE2Collector::checkPositioning(), MSVehicle::checkRewindLinkLanes(), MSLCM_SL2015::checkStrategicChange(), choosePolicy(), MSDevice_SSM::classifyEncounter(), ShapeContainer::clearHighlights(), NBTrafficLightLogic::closeBuilding(), ODDistrictHandler::closeDistrict(), NLHandler::closeEdge(), RORouteHandler::closeRouteDistribution(), RORouteHandler::closeVehicle(), NBTrafficLightDefinition::collectAllLinks(), NBTrafficLightDefinition::collectEdges(), NBLoadedSUMOTLDef::collectEdgeVectors(), NBLoadedTLDef::collectLinks(), ROJTRRouter::compute(), IntermodalRouter< E, L, N, V >::compute(), NBTrafficLightDefinition::compute(), NBNode::computeInternalLaneShape(), NBNode::computeLanes2Lanes(), NBNode::computeLogic(), NBOwnTLDef::computeLogicAndConts(), NBNode::computeNodeShape(), NBNodeShapeComputer::computeNodeShapeDefault(), NBNodeShapeComputer::computeNodeShapeSmall(), RODFNet::computeRoutesFor(), NBTrafficLightLogicCont::computeSingleLogic(), NBNode::computeSmoothShape(), NBTurningDirectionsComputer::computeTurnDirectionsForNode(), NGNet::connect(), NBOwnTLDef::corridorLike(), MSSOTLWaveTrafficLightLogic::countVehicles(), MSSOTLE2Sensors::countVehicles(), MSDevice_SSM::createEncounters(), GUINet::createTLWrapper(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSOTLPolicyBasedTrafficLightLogic::decideNextPhase(), decideNextPhase(), MSDeterministicHiLevelTrafficLightLogic::decidePolicy(), decidePolicy(), MSLane::detectCollisionBetween(), MSLane::detectCollisions(), MSLane::detectPedestrianJunctionCollision(), NIVissimDistrictConnection::dict_BuildDistrictNodes(), NIVissimDistrictConnection::dict_BuildDistricts(), MSTransportable::Stage_Waiting::endEventOutput(), MSTransportable::Stage_Driving::endEventOutput(), MSE3Collector::enter(), MSVehicle::enterLaneAtMove(), METriggeredCalibrator::execute(), Command_SaveTLSState::execute(), Command_SaveTLSSwitchStates::execute(), Command_SaveTLSSwitches::execute(), MSVTypeProbe::execute(), MSCalibrator::execute(), MSPModel_Striping::MovePedestrians::execute(), MSVehicle::executeMove(), MSLane::executeMovements(), NBNodeCont::extract(), NBTrafficLightLogicCont::extract(), libsumo::Helper::findCloserLane(), MSRailSignal::DriveWay::findFlankProtection(), MSDevice_SSM::findFoeConflictLane(), libsumo::Simulation::findIntermodalRoute(), MSDevice_SSM::findSurroundingVehicles(), MSDevice_SSM::flushConflicts(), NBTrafficLightDefinition::forbids(), NBNodeCont::generateNodeClusters(), RODFDetectorCon::getAggFlowFor(), RODFDetectorCon::getAnyDetectorForEdge(), MSPModel_Striping::getArbitraryPath(), MSVehicle::getBackPosition(), MSVehicle::getBackPositionOnLane(), libsumo::Vehicle::getBestLanes(), NBOwnTLDef::getBestPair(), NBRailwayTopologyAnalyzer::getBrokenRailNodes(), MSVehicle::getCenterOnEdge(), MSDevice_Battery::getChargingStationID(), MSRailSignal::getClickableTLLinkID(), GUILane::getColorValue(), libsumo::TrafficLight::getControlledLinks(), MSLane::getCriticalLeader(), NBNodeShapeComputer::getDefaultRadius(), NBTrafficLightDefinition::getDescription(), MSLink::getDescription(), GUIPerson::getDestinationEdgeID(), RODFNet::getDetectorEdge(), libsumo::Lane::getEdgeID(), GUIMEVehicle::getEdgeID(), GUIPerson::getEdgeID(), MSMeanData::getEdgeID(), MSPModel_Remote::getFirstPedestrianLane(), MSLane::getFollower(), MSLane::getFollowersOnConsecutive(), GUIPerson::getFromEdgeID(), MSCalibrator::getID(), NBEdge::getID(), libsumo::LaneArea::getLaneID(), libsumo::InductionLoop::getLaneID(), libsumo::Vehicle::getLaneID(), MSParkingArea::getLastFreePosWithReservation(), MSLane::getLastVehicleInformation(), MSVehicle::getLatOffset(), MSLane::getLeader(), MSLink::getLeaderInfo(), MSLane::getLeaderOnConsecutive(), MSLane::getLeadersOnConsecutive(), MSLink::getLengthBeforeCrossing(), MSLane::getLinkTo(), MSDeterministicHiLevelTrafficLightLogic::getMeanSpeedForInputLanes(), MSDeterministicHiLevelTrafficLightLogic::getMeanSpeedForOutputLanes(), NIImporter_VISUM::getNamedEdgeContinuating(), MSPerson::getNextEdge(), MSPModel_Striping::getNextLane(), MSLane::getOppositeFollower(), MSLane::getOppositeLeader(), MSLane::getOppositePos(), libsumo::Simulation::getParameter(), GUITrafficLightLogicWrapper::getParameterWindow(), GUILane::getParameterWindow(), GUILane::getParentName(), MSLane::getPartialBehind(), MSSOTLTrafficLightLogic::getPhaseIndexWithMaxCTS(), getPheromoneForInputLanes(), getPheromoneForOutputLanes(), PolygonDynamics::getPolygonID(), GUITrafficLightLogicWrapper::getPopUpMenu(), NLTriggerBuilder::getPosition(), NLDetectorBuilder::getPositionChecking(), libsumo::Person::getRoadID(), libsumo::Vehicle::getRoadID(), MSLCM_LC2013::getRoundaboutDistBonus(), libsumo::Vehicle::getRouteID(), MSVehicle::getSafeFollowSpeed(), libsumo::Person::getStage(), MSContainer::MSContainerStage_Driving::getStageSummary(), MSPerson::MSPersonStage_Walking::getStageSummary(), MSContainer::MSContainerStage_Tranship::getStageSummary(), MSPerson::MSPersonStage_Driving::getStageSummary(), MSTransportable::Stage_Trip::getStageSummary(), MSTransportable::Stage_Waiting::getStageSummary(), MSNet::getStoppingPlaceID(), MSLane::getSurroundingVehicles(), MSRailSignal::getTLLinkID(), MSLane::getUpcomingLinks(), MSDevice_SSM::getUpstreamVehicles(), MSPModel_Striping::getVehicleObstacles(), MSDevice_SSM::getVehiclesOnJunction(), MSLink::getZipperSpeed(), NBNode::guessCrossings(), RODFDetectorCon::guessEmptyFlows(), NBNodeCont::guessTLs(), GUITLLogicPhasesTrackerWindow::GUITLLogicPhasesTrackerWindow(), MSLane::handleCollisionBetween(), MSVehicle::haveValidStopEdges(), libsumo::POI::highlight(), MSVehicle::ignoreRed(), MSDeterministicHiLevelTrafficLightLogic::init(), MSRailSignal::init(), MSDelayBasedTrafficLightLogic::init(), MSActuatedTrafficLightLogic::init(), MSTrafficLightLogic::init(), MSSOTLTrafficLightLogic::init(), init(), MSE2Collector::initAuxiliaries(), NIImporter_SUMO::initTrafficLightLogic(), NIXMLTrafficLightsHandler::initTrafficLightLogic(), NBDistrictCont::insert(), NBTrafficLightLogicCont::insert(), NBNodeCont::insert(), MSEdge::insertVehicle(), MSLane::integrateNewVehicles(), GNEJunction::invalidateTLS(), NBNode::invalidateTLS(), MSTLLogicControl::isActive(), MSPedestrianPushButton::isActiveForEdge(), MSPedestrianPushButton::isActiveOnAnySideOfTheRoad(), RODFNet::isDestination(), RODFNet::isFalseSource(), MSLane::isInsertionSuccess(), MSVehicle::isLeader(), MESegment::isOpen(), RODFNet::isSource(), NIImporter_VISUM::isSplitEdge(), MSSOTLTrafficLightLogic::isThresholdPassed(), MESegment::jamThresholdForSpeed(), NBNodeShapeComputer::joinSameDirectionEdges(), NBEdgeCont::joinSameNodeConnectingEdges(), MSAbstractLaneChangeModel::laneChangeOutput(), MSE3Collector::leave(), MSE3Collector::leaveFront(), MSDevice_BTreceiver::BTreceiverUpdate::leaveRange(), MSPedestrianPushButton::loadCrossingEdgeMap(), NIImporter_OpenDrive::loadNetwork(), MSPedestrianPushButton::loadPushButtons(), ODDistrictCont::makeDistricts(), MSE2Collector::makeVehicleInfo(), MSSOTLE2Sensors::meanVehiclesSpeed(), MSPModel_Striping::moveInDirection(), MSPModel_Striping::moveInDirectionOnLane(), MSPModel_Striping::PState::moveToNextLane(), libsumo::Person::moveToXY(), libsumo::Vehicle::moveToXY(), libsumo::Helper::moveToXYMap(), MSCalibrator::MSCalibrator(), MSChargingStation::MSChargingStation(), MSDevice_Battery::MSDevice_Battery(), MSE2Collector::MSE2Collector(), NBLoadedTLDef::myCompute(), NIImporter_SUMO::myEndElement(), MSLaneSpeedTrigger::myStartElement(), MSTriggeredRerouter::myStartElement(), MSPModel_Striping::nextBlocking(), MSE3Collector::MSE3EntryReminder::notifyEnter(), MSMeanData::MeanDataValues::notifyEnter(), MSDevice_BTsender::notifyEnter(), MSDevice_Bluelight::notifyEnter(), MSDevice_BTreceiver::notifyEnter(), MSDevice_Example::notifyEnter(), MSMeanData_Net::MSLaneMeanDataValues::notifyEnter(), MSTriggeredRerouter::notifyEnter(), MSE3Collector::MSE3LeaveReminder::notifyEnter(), MSMeanData::MeanDataValueTracker::notifyEnter(), MSE2Collector::notifyEnter(), MSDevice_SSM::notifyEnter(), MSDevice_Transportable::notifyLeave(), MSDevice_Example::notifyLeave(), MSDevice_Bluelight::notifyLeave(), MSDevice_BTsender::notifyLeave(), MSDevice_BTreceiver::notifyLeave(), MSE2Collector::notifyLeave(), MSDevice_SSM::notifyLeave(), MSDevice_Example::notifyMove(), MSDevice_Bluelight::notifyMove(), MSDevice_BTsender::notifyMove(), MSDevice_BTreceiver::notifyMove(), MSE2Collector::notifyMove(), MSDevice_SSM::notifyMove(), GUIViewTraffic::onGamingClick(), MSLink::opened(), RORouteHandler::openRoute(), RODFNet::idComp::operator()(), NBNetBuilder::by_id_sorter::operator()(), NBNode::nodes_by_id_sorter::operator()(), MSLane::incoming_lane_priority_sorter::operator()(), MSLane::outgoing_lane_priority_sorter::operator()(), NIImporter_VISUM::parse_EdgePolys(), NIImporter_VISUM::parse_Lanes(), NIImporter_VISUM::parse_Turns(), NLTriggerBuilder::parseAndBuildCalibrator(), MSRouteHandler::parseWalkPositions(), NBLoadedSUMOTLDef::patchIfCrossingsAdded(), MSLCM_LC2013::patchSpeed(), MSLCM_SL2015::patchSpeed(), NBLoadedTLDef::SignalGroup::patchTYellow(), MSVehicle::planMove(), MSVehicle::planMoveInternal(), MSLane::planMovements(), MSInternalJunction::postloadInit(), MSRightOfWayJunction::postloadInit(), AGStreet::print(), MSDevice_SSM::processEncounters(), MSVehicle::processLaneAdvances(), MSVehicle::processLinkApproaches(), MSVehicle::processNextStop(), NIXMLNodesHandler::processNodeType(), TraCIServerAPI_Vehicle::processSet(), MEVehicle::processStop(), NIXMLNodesHandler::processTrafficLightDefinitions(), MSDelayBasedTrafficLightLogic::proposeProlongation(), NBNodeCont::pruneClusterFringe(), MSPModel_Striping::PState::PState(), MSOffTrafficLightLogic::rebuildPhase(), NBEdge::recheckLanes(), NBEdgeCont::recheckPostProcessConnections(), NIImporter_OpenStreetMap::reconstructLayerElevation(), NBLoadedSUMOTLDef::reconstructLogic(), MSLink::removeApproaching(), MSVehicle::removePassedDriveItems(), GNEJunction::removeTLSConnections(), NBNodeCont::rename(), GNENet::renameJunction(), RORouteDef::repairCurrentRoute(), GNEJunction::replaceIncomingConnections(), MSVehicle::replaceParkingArea(), MSVehicle::replaceRoute(), MSBaseVehicle::replaceRouteEdges(), NIImporter_DlrNavteq::TrafficlightsHandler::report(), NLEdgeControlBuilder::reportCurrentEdgeOrLane(), MSBaseVehicle::reroute(), MSRailSignal::LinkInfo::reroute(), GUIVehicle::rerouteDRTStop(), MSTriggeredRerouter::rerouteParkingArea(), MSVehicle::rerouteParkingArea(), MSLane::resetManeuverReservation(), MSLane::resetPartialOccupation(), RODFNet::revalidateFlows(), NBRailwayTopologyAnalyzer::reverseEdges(), RONet::saveAndRemoveRoutesUntil(), ROVehicle::saveAsXML(), ROPerson::Ride::saveAsXML(), MSTransportableDevice_Routing::saveState(), MSDevice_Routing::saveState(), MSDevice::saveState(), MSDevice_Vehroutes::saveState(), MSDevice_Tripinfo::saveState(), MSBaseVehicle::saveState(), MSLane::saveState(), GUIVehicle::selectBlockingFoes(), MSE2Collector::selectLanes(), MSLink::setApproaching(), NBNodeCont::setAsTLControlled(), GNEEdge::setAttribute(), MSChargingStation::setChargeDelay(), MSChargingStation::setChargingPower(), NLEdgeControlBuilder::setDefaultStopOffsets(), MSChargingStation::setEfficency(), MSLane::setManeuverReservation(), MSDevice_Battery::setMaximumBatteryCapacity(), NBEdge::setNodeBorder(), NIXMLEdgesHandler::setNodes(), NIImporter_OpenDrive::setNodeSecure(), MSLane::setPartialOccupation(), MSDevice_Battery::setPowerMax(), MSLink::setRequestInformation(), MSDevice_Battery::setStoppingTreshold(), NBLoadedSUMOTLDef::setTLControllingInformation(), NBOwnTLDef::setTLControllingInformation(), NBTrafficLightLogicCont::setTLControllingInformation(), NBLoadedTLDef::setTLControllingInformation(), NBEdge::shiftPositionAtNode(), MSLane::sortManeuverReservations(), IntermodalNetwork< E, L, N, V >::splitEdge(), MSLaneChangerSublane::startChangeSublane(), MSStopOut::stopEnded(), MSStopOut::stopStarted(), MSLane::succLinkSec(), GUITrafficLightLogicWrapper::switchTLSLogic(), MELoop::teleportVehicle(), MSSOTLTrafficLightLogic::trySwitch(), PolygonDynamics::update(), MSDevice_SSM::update(), MSDevice_SSM::updateAndWriteOutput(), MSVehicle::updateBestLanes(), MSLCM_SL2015::updateCFRelated(), MSSOTLTrafficLightLogic::updateCTS(), NLEdgeControlBuilder::updateCurrentLaneStopOffsets(), MSVehicle::updateDriveItems(), GNETLSEditorFrame::TLSJunction::updateJunctionDescription(), updatePheromoneLevels(), updateSensitivities(), MSAbstractLaneChangeModel::updateTargetLane(), MSDevice_BTreceiver::BTreceiverUpdate::updateVisibility(), NBNodeTypeComputer::validateRailCrossings(), MSLCM_LC2013::wantsChange(), MSLCM_SL2015::wantsChange(), MSLCM_SL2015::wantsChangeSublane(), NBParking::write(), MSBatteryExport::write(), MSEmissionExport::write(), MSFCDExport::write(), MSInstantInductLoop::write(), MSLink::writeApproaching(), MSRailSignal::writeBlocks(), NWWriter_DlrNavteq::writeConnectedLanes(), NWWriter_SUMO::writeDistrict(), MSFullExport::writeEdge(), MSXMLRawOut::writeEdge(), NWWriter_SUMO::writeEdge(), MSMeanData::writeEdge(), NWWriter_XML::writeEdgesAndConnections(), RODFDetector::writeEmitterDefinition(), RODFDetectorCon::writeEmitterPOIs(), RODFDetectorCon::writeEmitters(), RODFDetectorCon::writeEndRerouterDetectors(), NWWriter_OpenDrive::writeInternalEdge(), writeInterval(), NWWriter_SUMO::writeJunction(), MSQueueExport::writeLane(), MSFullExport::writeLane(), MSXMLRawOut::writeLane(), NWWriter_DlrNavteq::writeLinksUnsplitted(), NWWriter_OpenDrive::writeNetwork(), NWWriter_XML::writeNodes(), NWWriter_DlrNavteq::writeNodesUnsplitted(), NWWriter_SUMO::writeRoundabout(), RODFDetectorCon::writeSpeedTrigger(), NWWriter_DlrNavteq::writeTrafficSignals(), MSFCDExport::writeTransportable(), RODFDetectorCon::writeValidationDetectors(), MSFullExport::writeVehicles(), PointOfInterest::writeXML(), SUMOPolygon::writeXML(), MSRouteProbe::writeXMLOutput(), MSInductLoop::writeXMLOutput(), MSE2Collector::writeXMLOutput(), and RONet::~RONet().
|
inlinestaticinherited |
get an identifier for Named-like object which may be Null
Definition at line 70 of file Named.h.
Referenced by MSLCM_LC2013::_wantsChange(), MSLCM_SL2015::_wantsChangeSublane(), MSLaneChanger::changeOpposite(), MSVehicle::checkRewindLinkLanes(), DijkstraRouter< E, V, BASE >::compute(), AStarRouter< MSEdge, SUMOVehicle, SUMOAbstractRouterPermissions< MSEdge, SUMOVehicle > >::compute(), NBEdge::computeEdge2Edges(), NBEdge::computeLanes2Edges(), NBOwnTLDef::computeLogicAndConts(), MSLaneChanger::continueChange(), MSLane::detectCollisions(), MSRailSignal::DriveWay::findProtection(), MSCFModel_W99::followSpeed(), MSCFModel_CACC::followSpeed(), MSVehicle::getBackPositionOnLane(), NBOwnTLDef::getBestCombination(), NBOwnTLDef::getBestPair(), MSVehicle::getCenterOnEdge(), MSLaneChanger::getColumnleader(), NBEdge::Connection::getDescription(), MSLane::getFollowersOnConsecutive(), GUIVehicle::getLaneID(), MSVehicle::getLatOffset(), MSLane::getLeaderOnConsecutive(), MSLaneChanger::getRealLeader(), GUIVehicle::getShadowLaneID(), GUIVehicle::getTargetLaneID(), NBEdge::init(), MSLane::isInsertionSuccess(), MESegment::isOpen(), joinNamedToString(), joinNamedToStringSorting(), MSPModel_Striping::PState::moveToNextLane(), libsumo::Person::moveToXY(), libsumo::Vehicle::moveToXY(), libsumo::Helper::moveToXYMap(), operator<<(), NBEdge::recheckLanes(), MSTriggeredRerouter::rerouteParkingArea(), MSLCM_LC2013::saveBlockerLength(), MSLCM_SL2015::saveBlockerLength(), MSLCM_LC2013::slowDownForBlocked(), MSLCM_SL2015::slowDownForBlocked(), MSLaneChangerSublane::startChangeSublane(), toString(), MSLeaderInfo::toString(), MSLeaderDistanceInfo::toString(), MSCriticalFollowerDistanceInfo::toString(), MSVehicle::updateBestLanes(), and MSAbstractLaneChangeModel::updateShadowLane().
|
virtualinherited |
Returns the step (the phasenumber) of a given position of the cycle.
[in] | offset | The offset (time) for which the according phase shall be returned |
Implements MSTrafficLightLogic.
Definition at line 160 of file MSPhasedTrafficLightLogic.cpp.
References MSPhaseDefinition::duration, MSPhasedTrafficLightLogic::getPhase(), MSTrafficLightLogic::myDefaultCycleTime, and MSPhasedTrafficLightLogic::myPhases.
|
inlineprotectedinherited |
Definition at line 160 of file MSSOTLTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by MSSOTLTrafficLightLogic::init().
|
protected |
Definition at line 1146 of file MSSwarmTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::getCurrentPhaseDef(), MSPhaseDefinition::getState(), and m_laneIndexMap.
Referenced by updatePheromoneLevels().
|
inlineinherited |
Returns the list of lanes that are controlled by the signals at the given position.
[in] | i | The index of the signal |
Definition at line 189 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myEmptyLaneVector, and MSTrafficLightLogic::myLanes.
Referenced by GUITrafficLightLogicWrapper::drawGL(), Command_SaveTLSSwitches::execute(), MSActuatedTrafficLightLogic::getMinimumMinDuration(), MSActuatedTrafficLightLogic::hasMajor(), MSActuatedTrafficLightLogic::init(), GUIViewTraffic::onGamingClick(), and MSDelayBasedTrafficLightLogic::proposeProlongation().
|
inlineinherited |
Returns the list of lists of all lanes controlled by this tls.
Definition at line 180 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myLanes.
Referenced by MSSOTLWaveTrafficLightLogic::countVehicles(), GUITrafficLightLogicWrapper::getCenteringBoundary(), libsumo::TrafficLight::getControlledLanes(), libsumo::TrafficLight::getControlledLinks(), MSSOTLTrafficLightLogic::init(), TraCIServerAPI_TrafficLight::processGet(), and MSFullExport::writeTLS().
|
inline |
Definition at line 169 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by updateSensitivities().
|
inherited |
Returns the index of the given link.
[in] | link | The link to retrieve the index for |
Definition at line 264 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myLinks.
Referenced by GUITrafficLightLogicWrapper::getLinkIndex().
|
inlineinherited |
Returns the list of lists of all affected links.
Definition at line 201 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myLinks.
Referenced by MSTLLogicControl::TLSLogicVariants::addLogic(), GUINet::createTLWrapper(), GUITLLogicPhasesTrackerWindow::drawValues(), Command_SaveTLSSwitches::execute(), libsumo::TrafficLight::getControlledJunctions(), libsumo::TrafficLight::getControlledLinks(), GUITLLogicPhasesTrackerWindow::GUITLLogicPhasesTrackerWindow(), MSDeterministicHiLevelTrafficLightLogic::init(), MSSOTLTrafficLightLogic::init(), init(), and MSOffTrafficLightLogic::rebuildPhase().
|
inlineinherited |
Returns the list of links that are controlled by the signals at the given position.
[in] | i | The index of the signal |
Definition at line 210 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myLinks.
Referenced by MSDeterministicHiLevelTrafficLightLogic::init(), MSSOTLTrafficLightLogic::init(), and init().
|
inline |
Returns the type of the logic as a string.
Definition at line 188 of file MSSwarmTrafficLightLogic.h.
|
inline |
Definition at line 129 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toInt().
Referenced by decideNextPhase(), and MSSwarmTrafficLightLogic().
|
inlineprivateinherited |
Definition at line 275 of file MSSOTLTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toInt().
Referenced by MSSOTLTrafficLightLogic::countVehicles(), and MSSOTLTrafficLightLogic::updateCTS().
|
inherited |
Returns the assumed next switch time.
The time may change in case of adaptive/actuated traffic lights.
Definition at line 281 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::SwitchCommand::getNextSwitchTime(), and MSTrafficLightLogic::mySwitchCommand.
Referenced by MSTrafficLightLogic::getSpentDuration(), and MSTLLogicControl::WAUTSwitchProcedure::isPosAtGSP().
|
virtualinherited |
Returns the position (start of a phase during a cycle) from of a given step.
[in] | index | The index of the phase to return the begin of |
Implements MSTrafficLightLogic.
Definition at line 149 of file MSPhasedTrafficLightLogic.cpp.
References MSPhaseDefinition::duration, MSPhasedTrafficLightLogic::getPhase(), and MSPhasedTrafficLightLogic::myPhases.
Referenced by MSPhasedTrafficLightLogic::getPhaseIndexAtTime().
|
inlineprotectedinherited |
Definition at line 164 of file MSSOTLTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by MSSOTLTrafficLightLogic::init().
|
inherited |
Returns the value for a given key.
[in] | key | The key to ask for |
[in] | defaultValue | The default value to return if no value is stored under the key |
Definition at line 71 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NBEdge::addRestrictedLane(), FareModul::addStop(), NBEdge::append(), MSDevice_Battery::buildVehicleDevices(), MSDevice_Bluelight::buildVehicleDevices(), MSDevice_Example::buildVehicleDevices(), libsumo::Simulation::findIntermodalRoute(), getBetaNo(), getBetaSp(), MSDevice::getBoolParam(), NBRailwayTopologyAnalyzer::getBrokenRailNodes(), getChangePlanProbability(), GNELane::getColorValue(), GUILane::getColorValue(), MSSOTLTrafficLightLogic::getDecayConstant(), MSDevice_SSM::getDetectionRange(), MSDevice_SSM::getExtraTime(), MSDevice::getFloatParam(), getForgettingCox(), getGammaNo(), getGammaSp(), MSTLLogicControl::WAUTSwitchProcedure::getGSPValue(), MSSOTLTrafficLightLogic::getInputSensorsLength(), getLearningCox(), getMaxCongestionDuration(), MSDevice_SSM::getMeasuresAndThresholds(), MSSOTLRequestPolicy::getMinDecisionalPhaseDuration(), MSSOTLTrafficLightLogic::getMode(), GUIBaseVehicle::getOptionalName(), MSDevice_ToC::getOutputFilename(), MSDevice_SSM::getOutputFilename(), MSSOTLTrafficLightLogic::getOutputSensorsLength(), libsumo::Route::getParameter(), libsumo::Polygon::getParameter(), libsumo::POI::getParameter(), libsumo::Person::getParameter(), libsumo::TrafficLight::getParameter(), libsumo::Edge::getParameter(), libsumo::Lane::getParameter(), libsumo::VehicleType::getParameter(), libsumo::Vehicle::getParameter(), libsumo::Simulation::getParameter(), getPheroMaxVal(), getPoliciesParam(), getReinforcementMode(), MSSOTLTrafficLightLogic::getSpeedThreshold(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::getStretchAreaNo(), MSTLLogicControl::WAUTSwitchProcedure_Stretch::getStretchBereichDef(), MSDevice::getStringParam(), getThetaInit(), getThetaMax(), getThetaMin(), MSSOTLTrafficLightLogic::getThreshold(), MSTriggeredRerouter::getWeight(), PushButtonLogic::init(), MSSOTLPhasePolicy::init(), SigmoidLogic::init(), MSSOTLTrafficLightLogic::init(), init(), GNEVehicleType::initRailVisualizationParameters(), MSVehicleType::initRailVisualizationParameters(), MSSOTLTrafficLightLogic::isDecayThresholdActivated(), MSSOTLTrafficLightLogic::isPushButtonPressed(), libsumo::Helper::moveToXYMap(), MSActuatedTrafficLightLogic::MSActuatedTrafficLightLogic(), MSDelayBasedTrafficLightLogic::MSDelayBasedTrafficLightLogic(), MSSOTLPolicy::MSSOTLPolicy(), MSSOTLPolicy5DFamilyStimulus::MSSOTLPolicy5DFamilyStimulus(), MSSwarmTrafficLightLogic(), GNEVehicleType::overwriteVType(), MSDevice_SSM::requestsTrajectories(), NBEdgeCont::splitAt(), MSDevice_SSM::useGeoCoords(), NWWriter_DlrNavteq::writeLinksUnsplitted(), and NWWriter_OpenDrive::writeRoadObjects().
|
inherited |
Returns the inner key/value map.
Definition at line 105 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NIImporter_SUMO::_loadNetwork(), NBEdge::addLane(), GUIParameterTableWindow::closeBuilding(), NLHandler::closeEdge(), NBTrafficLightDefinition::compute(), GNEVehicleType::getGenericParameters(), GNELane::getGenericParameters(), GNEPoly::getGenericParameters(), GNEStop::getGenericParameters(), GNEPOI::getGenericParameters(), GNEJunction::getGenericParameters(), GNERide::getGenericParameters(), GNEPersonTrip::getGenericParameters(), GNEWalk::getGenericParameters(), GNEEdge::getGenericParameters(), GNERoute::getGenericParameters(), GNEPerson::getGenericParameters(), GNEAdditional::getGenericParameters(), GNEVehicle::getGenericParameters(), GNEVehicleType::getGenericParametersStr(), GNELane::getGenericParametersStr(), GNEPoly::getGenericParametersStr(), GNEStop::getGenericParametersStr(), GNEPOI::getGenericParametersStr(), GNEJunction::getGenericParametersStr(), GNERide::getGenericParametersStr(), GNEPersonTrip::getGenericParametersStr(), GNEWalk::getGenericParametersStr(), GNEEdge::getGenericParametersStr(), GNERoute::getGenericParametersStr(), GNEPerson::getGenericParametersStr(), GNEAdditional::getGenericParametersStr(), GNEVehicle::getGenericParametersStr(), GUITrafficLightLogicWrapper::getParameterWindow(), GUIPolygon::getParameterWindow(), GUIJunctionWrapper::getParameterWindow(), GUIPointOfInterest::getParameterWindow(), GUILane::getParameterWindow(), GUIPerson::getTypeParameterWindow(), GUIContainer::getTypeParameterWindow(), GUIVehicle::getTypeParameterWindow(), GUIMEVehicle::getTypeParameterWindow(), NIImporter_OpenStreetMap::insertEdge(), NBLoadedSUMOTLDef::NBLoadedSUMOTLDef(), GUIParameterTableWindow::numParams(), GNEVehicleType::overwriteVType(), and TraCIServerAPI_TrafficLight::processGet().
|
virtualinherited |
Returns the definition of the phase from the given position within the plan.
[in] | givenstep | The index of the phase within the plan |
Implements MSTrafficLightLogic.
Definition at line 118 of file MSPhasedTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::myPhases.
Referenced by MSSOTLTrafficLightLogic::checkPhases(), MSPhasedTrafficLightLogic::getIndexFromOffset(), MSPhasedTrafficLightLogic::getOffsetFromIndex(), MSPhasedTrafficLightLogic::getPhaseIndexAtTime(), MSSOTLTrafficLightLogic::isThresholdPassed(), MSSOTLTrafficLightLogic::setToATargetPhase(), MSSOTLTrafficLightLogic::setupCTS(), MSSOTLTrafficLightLogic::trySwitch(), and MSSOTLTrafficLightLogic::updateCTS().
Returns the index of the logic at the given simulation step.
Implements MSTrafficLightLogic.
Definition at line 139 of file MSPhasedTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::getOffsetFromIndex(), MSPhasedTrafficLightLogic::getPhase(), MSTrafficLightLogic::myDefaultCycleTime, MSPhaseDefinition::myLastSwitch, and MSPhasedTrafficLightLogic::myStep.
|
protectedinherited |
Definition at line 370 of file MSSOTLTrafficLightLogic.cpp.
References Named::getID(), RandHelper::getRandomFrom(), MSSOTLTrafficLightLogic::getTargetPhaseMaxLastSelection(), MSSOTLTrafficLightLogic::lastChain, MSSOTLTrafficLightLogic::targetPhasesCTS, MSSOTLTrafficLightLogic::targetPhasesLastSelection, and WRITE_MESSAGE.
Referenced by MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSOTLPolicyBasedTrafficLightLogic::decideNextPhase(), MSSOTLTrafficLightLogic::decideNextPhase(), and decideNextPhase().
|
virtualinherited |
Returns the number of phases.
Implements MSTrafficLightLogic.
Definition at line 107 of file MSPhasedTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::myPhases.
Referenced by MSSOTLWaveTrafficLightLogic::MSSOTLWaveTrafficLightLogic().
|
virtualinherited |
Returns the phases of this tls program.
Implements MSTrafficLightLogic.
Definition at line 113 of file MSPhasedTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::myPhases.
Referenced by MSSOTLTrafficLightLogic::checkPhases(), MSSOTLTrafficLightLogic::init(), MSSOTLTrafficLightLogic::setToATargetPhase(), and MSSOTLTrafficLightLogic::setupCTS().
|
inline |
Definition at line 133 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by initScaleFactorDispersionIn(), initScaleFactorDispersionOut(), and updatePheromoneLevels().
|
protected |
Definition at line 498 of file MSSwarmTrafficLightLogic.cpp.
References DBG, Named::getID(), MSNet::getInstance(), pheromoneInputLanes, time2string(), and WRITE_MESSAGE.
Referenced by decidePolicy(), and updateSensitivities().
|
protected |
Definition at line 516 of file MSSwarmTrafficLightLogic.cpp.
References DBG, Named::getID(), MSNet::getInstance(), pheromoneOutputLanes, time2string(), and WRITE_MESSAGE.
Referenced by decidePolicy().
|
inlineinherited |
Returns the vector of the low-level policies used by this high-level tll.
Definition at line 85 of file MSSOTLHiLevelTrafficLightLogic.h.
References MSSOTLHiLevelTrafficLightLogic::policies.
Referenced by MSDeterministicHiLevelTrafficLightLogic::choosePolicy(), choosePolicy(), MSSwarmTrafficLightLogic(), and updateSensitivities().
|
inlineprotected |
Definition at line 319 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter().
Referenced by MSSwarmTrafficLightLogic().
|
inlineinherited |
Returns this tl-logic's id.
Definition at line 172 of file MSTrafficLightLogic.h.
References MSTrafficLightLogic::myProgramID.
Referenced by Command_SaveTLSState::execute(), Command_SaveTLSSwitchStates::execute(), Command_SaveTLSSwitches::execute(), GUITrafficLightLogicWrapper::getParameterWindow(), libsumo::TrafficLight::getProgram(), GUITLLogicPhasesTrackerWindow::GUITLLogicPhasesTrackerWindow(), MSTrafficLightLogic::init(), and GUIViewTraffic::onGamingClick().
|
inlineprotected |
Definition at line 329 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toInt().
Referenced by decideNextPhase(), and updateSensitivities().
|
inline |
Definition at line 177 of file MSSwarmTrafficLightLogic.h.
References scaleFactorDispersionIn.
Referenced by getDispersionForInputLanes().
|
inline |
Definition at line 181 of file MSSwarmTrafficLightLogic.h.
References scaleFactorDispersionOut.
Referenced by getDispersionForOutputLanes().
|
inlineprotectedinherited |
Definition at line 176 of file MSSOTLTrafficLightLogic.h.
References MSSOTLTrafficLightLogic::mySensors.
Referenced by MSSOTLWaveTrafficLightLogic::countVehicles(), MSDeterministicHiLevelTrafficLightLogic::getMeanSpeedForInputLanes(), MSDeterministicHiLevelTrafficLightLogic::getMeanSpeedForOutputLanes(), and updatePheromoneLevels().
|
inlineprotectedinherited |
Definition at line 156 of file MSSOTLTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by MSSOTLTrafficLightLogic::init().
|
inherited |
Returns the duration spent in the current phase.
Definition at line 287 of file MSTrafficLightLogic.cpp.
References MSPhaseDefinition::duration, MSTrafficLightLogic::getCurrentPhaseDef(), MSNet::getCurrentTimeStep(), MSNet::getInstance(), and MSTrafficLightLogic::getNextSwitchTime().
|
inlineprivateinherited |
Definition at line 226 of file MSSOTLTrafficLightLogic.h.
References MSSOTLTrafficLightLogic::targetPhasesCTS.
Referenced by MSSOTLTrafficLightLogic::getPhaseIndexWithMaxCTS(), and MSSOTLTrafficLightLogic::trySwitch().
|
inline |
Definition at line 165 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by updateSensitivities().
|
inline |
Definition at line 157 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by updateSensitivities().
|
inline |
Definition at line 161 of file MSSwarmTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toDouble().
Referenced by updateSensitivities().
|
inlineprotectedinherited |
Definition at line 152 of file MSSOTLTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toInt().
Referenced by MSSOTLTrafficLightLogic::isThresholdPassed().
|
inherited |
ignore pedestrian crossing index in mesosim
Definition at line 366 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myIgnoredIndices.
|
virtual |
Initialises the tls with sensors on incoming and outgoing lanes Sensors are built in the simulation according to the type of sensor specified in the simulation parameter.
[in] | nb | The detector builder |
ProcessError | If something fails on initialisation |
Reimplemented from MSSOTLHiLevelTrafficLightLogic.
Definition at line 115 of file MSSwarmTrafficLightLogic.cpp.
References allowLine(), ANALYSIS_DBG, choosePolicy(), MSSOTLHiLevelTrafficLightLogic::getCurrentPolicy(), MSNet::getCurrentTimeStep(), Named::getID(), MSNet::getInstance(), MSTrafficLightLogic::getLinks(), MSTrafficLightLogic::getLinksAt(), Parameterised::getParameter(), MSSOTLHiLevelTrafficLightLogic::init(), initScaleFactorDispersionIn(), initScaleFactorDispersionOut(), laneCheck, lastThetaSensitivityUpdate, logData, m_derivativeAlpha, m_derivativeHistory, m_laneIndexMap, m_losCounter, m_losMaxLimit, m_meanSpeedHistory, MSTrafficLightLogic::myLanes, MSTrafficLightLogic::myLinks, pheromoneInputLanes, pheromoneOutputLanes, swarmLogFile, StringUtils::toDouble(), StringUtils::toInt(), and WRITE_MESSAGE.
|
privateinherited |
initialize optional meso penalties
XXX penalty for wrap-around red phases is underestimated
Definition at line 311 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::getPhases(), MSGlobals::gMesoTLSPenalty, LINKSTATE_TL_RED, LINKSTATE_TL_REDYELLOW, MAX2(), MSTrafficLightLogic::myLinks, NUMERICAL_EPS, STEPS2TIME, and TIME2STEPS.
Referenced by MSTrafficLightLogic::init().
|
inlineprotected |
Definition at line 333 of file MSSwarmTrafficLightLogic.h.
References getPheroMaxVal(), and scaleFactorDispersionIn.
Referenced by init().
|
inlineprotected |
Definition at line 361 of file MSSwarmTrafficLightLogic.h.
References getPheroMaxVal(), and scaleFactorDispersionOut.
Referenced by init().
|
inlineprivateinherited |
Definition at line 283 of file MSSOTLTrafficLightLogic.h.
References Parameterised::getParameter(), and StringUtils::toBool().
Referenced by MSSOTLTrafficLightLogic::init(), MSSOTLTrafficLightLogic::isThresholdPassed(), MSSOTLTrafficLightLogic::trySwitch(), and MSSOTLTrafficLightLogic::updateCTS().
|
protectedinherited |
@breef Checks the if the pushbutton was activated for the current stage
Definition at line 507 of file MSSOTLTrafficLightLogic.cpp.
References MSPushButton::anyActive(), MSPhasedTrafficLightLogic::getCurrentPhaseDef(), Parameterised::getParameter(), MSPhaseDefinition::getState(), MSPedestrianPushButton::loadPushButtons(), and MSSOTLTrafficLightLogic::m_pushButtons.
Referenced by MSDeterministicHiLevelTrafficLightLogic::canRelease(), MSSOTLPolicyBasedTrafficLightLogic::canRelease(), canRelease(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSOTLPolicyBasedTrafficLightLogic::decideNextPhase(), and decideNextPhase().
|
inherited |
whether this logic is selected in the GUI
Definition at line 372 of file MSTrafficLightLogic.cpp.
References MSNet::getInstance(), and MSNet::isSelected().
|
protectedinherited |
Definition at line 306 of file MSSOTLTrafficLightLogic.cpp.
References DBG, MSSOTLTrafficLightLogic::decayThreshold, MSPhasedTrafficLightLogic::getCurrentPhaseDef(), Named::getID(), MSNet::getInstance(), MSPhasedTrafficLightLogic::getPhase(), MSPhaseDefinition::getState(), MSSOTLTrafficLightLogic::getThreshold(), MSSOTLTrafficLightLogic::isDecayThresholdActivated(), MSSOTLTrafficLightLogic::lastChain, RandHelper::rand(), MSSOTLTrafficLightLogic::targetPhasesCTS, time2string(), and WRITE_MESSAGE.
Referenced by MSSOTLPhaseTrafficLightLogic::canRelease(), MSDeterministicHiLevelTrafficLightLogic::canRelease(), MSSOTLPolicyBasedTrafficLightLogic::canRelease(), canRelease(), MSDeterministicHiLevelTrafficLightLogic::decideNextPhase(), MSSOTLPolicyBasedTrafficLightLogic::decideNextPhase(), and decideNextPhase().
|
inherited |
Returns whether the parameter is known.
[in] | key | The key to ask for |
Definition at line 65 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NBEdge::append(), MSDevice_Bluelight::buildVehicleDevices(), MSDevice_Example::buildVehicleDevices(), MSDevice::getBoolParam(), NWWriter_DlrNavteq::getBrunnelType(), MSDevice_SSM::getDetectionRange(), MSDevice_SSM::getExtraTime(), MSDevice::getFloatParam(), MSDevice_SSM::getMeasuresAndThresholds(), MSDevice_ToC::getOutputFilename(), MSDevice_SSM::getOutputFilename(), libsumo::Simulation::getParameter(), MSDevice::getStringParam(), MSTriggeredRerouter::getWeight(), GNEVehicleType::initRailVisualizationParameters(), MSVehicleType::initRailVisualizationParameters(), GNEVehicleType::overwriteVType(), MSDevice_SSM::requestsTrajectories(), MSDevice_SSM::useGeoCoords(), and NWWriter_OpenDrive::writeRoadObjects().
|
protectedinherited |
Definition at line 84 of file MSSOTLTrafficLightLogic.cpp.
|
protectedinherited |
Proceed to the next step.
MEMBER FACTORIZED TO PARENT CLASS (MSTrafficLightLogic)
Definition at line 92 of file MSPhasedTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::myStep, and MSPhasedTrafficLightLogic::setStep().
|
privateinherited |
Definition at line 214 of file MSSOTLTrafficLightLogic.cpp.
References MSNet::getCurrentTimeStep(), MSNet::getInstance(), MSSOTLTrafficLightLogic::lastCheckForTargetPhase, and MSSOTLTrafficLightLogic::targetPhasesCTS.
Referenced by MSSOTLTrafficLightLogic::trySwitch().
|
protected |
Definition at line 1063 of file MSSwarmTrafficLightLogic.cpp.
References laneCheck, MSTrafficLightLogic::myLanes, and MSTrafficLightLogic::myLinks.
Referenced by calculateEtaDiff(), and calculateEtaRatio().
|
inherited |
Resets the states of controlled links.
[in] | vals | The state of controlled links to use |
Definition at line 251 of file MSTrafficLightLogic.cpp.
References MSNet::getCurrentTimeStep(), MSNet::getInstance(), and MSTrafficLightLogic::myLinks.
|
protected |
Resets pheromone levels.
Definition at line 201 of file MSSwarmTrafficLightLogic.cpp.
References pheromoneInputLanes, and pheromoneOutputLanes.
Referenced by decideNextPhase().
|
inherited |
Delays current phase by the given delay.
[in] | delay | The time by which the current phase shall be delayed |
Definition at line 306 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::myCurrentDurationIncrement.
|
inlineinherited |
resets the id
[in] | newID | The new id of this object |
Definition at line 85 of file Named.h.
References Named::myID.
Referenced by Distribution_Parameterized::parse(), NBLoadedSUMOTLDef::reconstructLogic(), NBEdgeCont::remapIDs(), NBNodeCont::rename(), NBEdgeCont::rename(), GNEJunction::setAttribute(), and IntermodalNetwork< E, L, N, V >::splitEdge().
|
inherited |
Sets a parameter.
[in] | key | The parameter's name |
[in] | value | The parameter's value |
Definition at line 45 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NLHandler::addDistrict(), SUMORouteHandler::addParam(), ShapeHandler::addPOI(), NBEdge::append(), NIImporter_OpenStreetMap::insertNodeChecking(), NBNodeCont::joinNodeCluster(), NBEdge::Lane::Lane(), NIImporter_OpenDrive::loadNetwork(), NIXMLTrafficLightsHandler::myStartElement(), MSStateHandler::myStartElement(), ShapeHandler::myStartElement(), NIXMLNodesHandler::myStartElement(), NIImporter_MATSim::EdgesHandler::myStartElement(), GNEAdditionalHandler::parseGenericParameter(), GNEVehicleType::setAttribute(), GNEConnection::setGenericParametersStr(), GNEVehicleType::setGenericParametersStr(), GNELane::setGenericParametersStr(), GNEPoly::setGenericParametersStr(), GNEStop::setGenericParametersStr(), GNEPOI::setGenericParametersStr(), GNEJunction::setGenericParametersStr(), GNERide::setGenericParametersStr(), GNEPersonTrip::setGenericParametersStr(), GNEWalk::setGenericParametersStr(), GNEEdge::setGenericParametersStr(), GNERoute::setGenericParametersStr(), GNEPerson::setGenericParametersStr(), GNEAdditional::setGenericParametersStr(), GNEVehicle::setGenericParametersStr(), NIImporter_OpenDrive::setLaneAttributes(), libsumo::Route::setParameter(), libsumo::Polygon::setParameter(), libsumo::POI::setParameter(), libsumo::TrafficLight::setParameter(), libsumo::Edge::setParameter(), and libsumo::Lane::setParameter().
|
inherited |
Replaces the phases and set the phase index.
Definition at line 196 of file MSPhasedTrafficLightLogic.cpp.
References MSPhasedTrafficLightLogic::deletePhases(), MSPhasedTrafficLightLogic::myPhases, and MSPhasedTrafficLightLogic::myStep.
|
protectedinherited |
Forces a specific step.
Definition at line 97 of file MSPhasedTrafficLightLogic.cpp.
References MSNet::getCurrentTimeStep(), MSNet::getInstance(), MSPhasedTrafficLightLogic::myPhases, and MSPhasedTrafficLightLogic::myStep.
Referenced by MSPhasedTrafficLightLogic::proceedToNextStep(), MSSOTLTrafficLightLogic::setToATargetPhase(), and MSSOTLTrafficLightLogic::trySwitch().
|
privateinherited |
Definition at line 109 of file MSSOTLTrafficLightLogic.cpp.
References MsgHandler::getErrorInstance(), MSPhasedTrafficLightLogic::getPhase(), MSPhasedTrafficLightLogic::getPhases(), MsgHandler::inform(), MSPhaseDefinition::isTarget(), MSSOTLTrafficLightLogic::lastChain, Named::myID, and MSPhasedTrafficLightLogic::setStep().
Referenced by MSSOTLTrafficLightLogic::MSSOTLTrafficLightLogic().
|
inherited |
Applies the current signal states to controlled links.
[in] | t | The current time |
Definition at line 235 of file MSTrafficLightLogic.cpp.
References MSTrafficLightLogic::getCurrentPhaseDef(), MSPhaseDefinition::getState(), and MSTrafficLightLogic::myLinks.
Referenced by MSTLLogicControl::TLSLogicVariants::addLogic(), MSSimpleTrafficLightLogic::changeStepAndDuration(), MSRailCrossing::init(), and MSRailSignal::init().
|
privateinherited |
Definition at line 98 of file MSSOTLTrafficLightLogic.cpp.
References MSNet::getCurrentTimeStep(), MSNet::getInstance(), MSPhasedTrafficLightLogic::getPhase(), MSPhasedTrafficLightLogic::getPhases(), MSPhaseDefinition::isTarget(), MSSOTLTrafficLightLogic::lastCheckForTargetPhase, MSSOTLTrafficLightLogic::targetPhasesCTS, and MSSOTLTrafficLightLogic::targetPhasesLastSelection.
Referenced by MSSOTLTrafficLightLogic::MSSOTLTrafficLightLogic().
|
virtualinherited |
Switches to the next phase.
Implements MSTrafficLightLogic.
Definition at line 453 of file MSSOTLTrafficLightLogic.cpp.
References ANALYSIS_DBG, MSSOTLTrafficLightLogic::computeReturnTime(), MSSOTLTrafficLightLogic::decayThreshold, MSSOTLTrafficLightLogic::decideNextPhase(), MSPhasedTrafficLightLogic::getCurrentPhaseDef(), MSSOTLTrafficLightLogic::getCurrentPhaseElapsed(), MSPhasedTrafficLightLogic::getCurrentPhaseIndex(), MSNet::getCurrentTimeStep(), Named::getID(), MSNet::getInstance(), MSPhasedTrafficLightLogic::getPhase(), MSPhaseDefinition::getState(), MSSOTLTrafficLightLogic::getTargetPhaseMaxLastSelection(), MSSOTLTrafficLightLogic::isDecayThresholdActivated(), MSPhaseDefinition::isTarget(), MSSOTLTrafficLightLogic::lastChain, MSPhaseDefinition::myLastSwitch, MSSOTLTrafficLightLogic::mySensors, MSSOTLTrafficLightLogic::resetCTS(), MSPhasedTrafficLightLogic::setStep(), MSSOTLSensors::stepChanged(), MSSOTLTrafficLightLogic::targetPhasesLastSelection, time2string(), MSSOTLTrafficLightLogic::updateCTS(), and WRITE_MESSAGE.
|
inherited |
Removes a parameter.
[in] | key | The parameter's name |
Definition at line 51 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by GNEVehicleType::setAttribute().
|
privateinherited |
Definition at line 223 of file MSSOTLTrafficLightLogic.cpp.
References MSSOTLTrafficLightLogic::countVehicles(), MSNet::getCurrentTimeStep(), Named::getID(), MSNet::getInstance(), MSSOTLTrafficLightLogic::getMode(), MSPhasedTrafficLightLogic::getPhase(), MSSOTLTrafficLightLogic::isDecayThresholdActivated(), MSSOTLTrafficLightLogic::lastChain, MSSOTLTrafficLightLogic::lastCheckForTargetPhase, MSSOTLTrafficLightLogic::targetPhasesCTS, MSSOTLTrafficLightLogic::updateDecayThreshold(), WRITE_ERROR, and WRITE_MESSAGE.
Referenced by MSSOTLTrafficLightLogic::trySwitch().
|
privateinherited |
Definition at line 294 of file MSSOTLTrafficLightLogic.cpp.
References DBG, MSSOTLTrafficLightLogic::decayThreshold, MSPhasedTrafficLightLogic::getCurrentPhaseDef(), MSSOTLTrafficLightLogic::getDecayConstant(), MSNet::getInstance(), time2string(), and WRITE_MESSAGE.
Referenced by MSSOTLTrafficLightLogic::updateCTS().
|
inherited |
Adds or updates all given parameters from the map.
[in] | mapArg | The keys/values to insert |
Definition at line 57 of file Parameterised.cpp.
References Parameterised::myMap.
Referenced by NIImporter_SUMO::_loadNetwork(), PCLoaderOSM::addPOI(), PCLoaderOSM::addPolygon(), NLHandler::closeEdge(), NLJunctionControlBuilder::closeJunction(), NBTrafficLightDefinition::compute(), NIImporter_OpenStreetMap::insertEdge(), and NBLoadedSUMOTLDef::NBLoadedSUMOTLDef().
|
protected |
Update pheromone levels Pheromone on input lanes is costantly updated Pheromone follows a discrete-time dynamic law "pheromone(k+1) = beta*pheromone(k) + gamma * sensed_val(k)".
Definition at line 285 of file MSSwarmTrafficLightLogic.cpp.
References getBetaNo(), getBetaSp(), getGammaNo(), getGammaSp(), pheromoneInputLanes, and pheromoneOutputLanes.
Referenced by decideNextPhase().
|
protected |
Utility method to avoid code duplication.
Definition at line 297 of file MSSwarmTrafficLightLogic.cpp.
References ANALYSIS_DBG, MSSOTLSensors::countVehicles(), DBG, MSSOTLTrafficLightLogic::getCountSensors(), Named::getID(), MSNet::getInstance(), getLaneLightState(), MSSOTLSensors::getMaxSpeed(), MSSOTLE2Sensors::getPassedVeh(), getPheroMaxVal(), MSSOTLTrafficLightLogic::getSensors(), m_derivativeAlpha, m_derivativeHistory, m_losCounter, m_losMaxLimit, m_meanSpeedHistory, m_pheroLevelLog, MAX2(), MSSOTLSensors::meanVehiclesSpeed(), MIN2(), time2string(), and WRITE_MESSAGE.
|
protected |
After a policy has been chosen, for every iteration thresholds has to be updated. Thresholds reinforcement lowers the theta_sensitivity for the current policy and raises the ones for currently unused policies. Thresholds belongs to the interval [THETA_MIN THETA_MAX]
Definition at line 413 of file MSSwarmTrafficLightLogic.cpp.
References calculateEtaDiff(), calculateEtaRatio(), carsIn, carsOut, MSSOTLHiLevelTrafficLightLogic::currentPolicy, DBG, MSSOTLHiLevelTrafficLightLogic::getCurrentPolicy(), MSNet::getCurrentTimeStep(), getForgettingCox(), Named::getID(), MSNet::getInstance(), getLearningCox(), MSSOTLPolicy::getName(), getPheromoneForInputLanes(), MSSOTLHiLevelTrafficLightLogic::getPolicies(), getReinforcementMode(), getThetaInit(), getThetaMax(), getThetaMin(), MSSOTLPolicy::getThetaSensitivity(), inTarget, lastThetaSensitivityUpdate, MAX2(), MIN2(), notTarget, MSSOTLHiLevelTrafficLightLogic::policies, MSSOTLPolicy::setThetaSensitivity(), skipEta, STEPS2TIME, time2string(), and WRITE_MESSAGE.
Referenced by decideNextPhase().
|
inherited |
write Params in the given outputdevice
Definition at line 111 of file Parameterised.cpp.
References OutputDevice::closeTag(), StringUtils::escapeXML(), Parameterised::myMap, OutputDevice::openTag(), SUMO_ATTR_KEY, SUMO_ATTR_VALUE, SUMO_TAG_PARAM, and OutputDevice::writeAttr().
Referenced by ROVehicle::saveAsXML(), ROPerson::saveAsXML(), MEVehicle::saveState(), MSVehicle::saveState(), SUMOVTypeParameter::write(), GNEAdditional::writeAdditional(), NWWriter_SUMO::writeConnection(), GNERoute::writeDemandElement(), NWWriter_SUMO::writeEdge(), NWWriter_XML::writeEdgesAndConnections(), NWWriter_SUMO::writeJunction(), NWWriter_SUMO::writeLane(), NWWriter_XML::writeNodes(), MSDevice_Vehroutes::writeOutput(), PointOfInterest::writeXML(), and SUMOPolygon::writeXML().
|
protected |
Definition at line 423 of file MSSwarmTrafficLightLogic.h.
Referenced by calculateEtaDiff(), calculateEtaRatio(), and updateSensitivities().
|
protected |
Definition at line 424 of file MSSwarmTrafficLightLogic.h.
Referenced by calculateEtaDiff(), calculateEtaRatio(), and updateSensitivities().
|
protected |
Definition at line 402 of file MSSwarmTrafficLightLogic.h.
Referenced by decideNextPhase(), decidePolicy(), and MSSwarmTrafficLightLogic().
|
privateinherited |
Definition at line 119 of file MSSOTLHiLevelTrafficLightLogic.h.
Referenced by MSSOTLHiLevelTrafficLightLogic::activate(), MSSOTLHiLevelTrafficLightLogic::getCurrentPolicy(), and updateSensitivities().
|
privateinherited |
Definition at line 238 of file MSSOTLTrafficLightLogic.h.
Referenced by MSSOTLTrafficLightLogic::init(), MSSOTLTrafficLightLogic::isThresholdPassed(), MSSOTLTrafficLightLogic::trySwitch(), and MSSOTLTrafficLightLogic::updateDecayThreshold().
|
protected |
When true indicates that we've already acquired the target lanes for this particular phase.
Definition at line 421 of file MSSwarmTrafficLightLogic.h.
Referenced by decideNextPhase(), and MSSwarmTrafficLightLogic().
|
protected |
Definition at line 425 of file MSSwarmTrafficLightLogic.h.
Referenced by calculateEtaDiff(), calculateEtaRatio(), and updateSensitivities().
|
protected |
Map to check if a lane was already controlled during the elaboration of eta.
Definition at line 407 of file MSSwarmTrafficLightLogic.h.
Referenced by calculateEtaDiff(), calculateEtaRatio(), init(), and resetLaneCheck().
|
privateinherited |
|
privateinherited |
Definition at line 221 of file MSSOTLTrafficLightLogic.h.
Referenced by MSSOTLTrafficLightLogic::resetCTS(), MSSOTLTrafficLightLogic::setupCTS(), and MSSOTLTrafficLightLogic::updateCTS().
|
protected |
This member keeps track of the last thresholds update, s.t. updates can be correctly performed even on time-variable interations.
Definition at line 215 of file MSSwarmTrafficLightLogic.h.
Referenced by init(), and updateSensitivities().
|
protected |
Definition at line 395 of file MSSwarmTrafficLightLogic.h.
Referenced by init(), and ~MSSwarmTrafficLightLogic().
|
protected |
Definition at line 442 of file MSSwarmTrafficLightLogic.h.
Referenced by init(), and updatePheromoneLevels().
|
protected |
Definition at line 441 of file MSSwarmTrafficLightLogic.h.
Referenced by init(), updatePheromoneLevels(), and ~MSSwarmTrafficLightLogic().
|
protected |
Definition at line 434 of file MSSwarmTrafficLightLogic.h.
Referenced by getLaneLightState(), and init().
|
protected |
Definition at line 443 of file MSSwarmTrafficLightLogic.h.
Referenced by init(), and updatePheromoneLevels().
|
protected |
Definition at line 444 of file MSSwarmTrafficLightLogic.h.
Referenced by init(), and updatePheromoneLevels().
|
protected |
Definition at line 440 of file MSSwarmTrafficLightLogic.h.
Referenced by init(), updatePheromoneLevels(), and ~MSSwarmTrafficLightLogic().
|
protected |
Definition at line 437 of file MSSwarmTrafficLightLogic.h.
Referenced by updatePheromoneLevels().
|
protectedinherited |
Definition at line 118 of file MSSOTLTrafficLightLogic.h.
Referenced by MSSOTLTrafficLightLogic::isPushButtonPressed(), and MSSOTLTrafficLightLogic::~MSSOTLTrafficLightLogic().
|
protected |
Definition at line 445 of file MSSwarmTrafficLightLogic.h.
Referenced by choosePolicy(), and MSSwarmTrafficLightLogic().
|
protected |
When true, indicates that the current policy MUST be changed.
It's used to force the exit from the congestion policy.
Definition at line 401 of file MSSwarmTrafficLightLogic.h.
Referenced by decideNextPhase(), decidePolicy(), and MSSwarmTrafficLightLogic().
|
privateinherited |
Definition at line 208 of file MSSOTLTrafficLightLogic.h.
Referenced by MSSOTLTrafficLightLogic::getCountSensors(), MSSOTLTrafficLightLogic::init(), and MSSOTLTrafficLightLogic::MSSOTLTrafficLightLogic().
|
protectedinherited |
A value for enlarge the current duration.
Definition at line 424 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::setCurrentDurationIncrement(), and MSSimpleTrafficLightLogic::trySwitch().
|
protectedinherited |
The cycle time (without changes)
Definition at line 430 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::getDefaultCycleTime(), MSPhasedTrafficLightLogic::getIndexFromOffset(), MSSimpleTrafficLightLogic::getIndexFromOffset(), MSPhasedTrafficLightLogic::getPhaseIndexAtTime(), MSSimpleTrafficLightLogic::getPhaseIndexAtTime(), MSOffTrafficLightLogic::MSOffTrafficLightLogic(), MSPhasedTrafficLightLogic::MSPhasedTrafficLightLogic(), MSRailSignal::MSRailSignal(), and MSSimpleTrafficLightLogic::MSSimpleTrafficLightLogic().
|
staticprotectedinherited |
An empty lane vector.
Definition at line 433 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::getLanesAt().
|
protectedinherited |
The name of the object.
Definition at line 134 of file Named.h.
Referenced by MSE2Collector::addDetectorToLanes(), RODFDetector::buildDestinationDistribution(), NGEdge::buildNBEdge(), NGNode::buildNBNode(), MSSOTLTrafficLightLogic::checkPhases(), NBNode::computeNodeShape(), MSE2Collector::detectorUpdate(), GNEPoly::getAttribute(), GNEPOI::getAttribute(), MSLane::getCanonicalPredecessorLane(), MSLane::getCanonicalSuccessorLane(), Named::getID(), NBEdge::getLaneID(), ROEdge::getStoredEffort(), MSLane::getSurroundingVehicles(), ROEdge::getTravelTime(), MSDelayBasedTrafficLightLogic::init(), MSActuatedTrafficLightLogic::init(), MSSOTLTrafficLightLogic::init(), NBEdge::init(), MSLane::isInsertionSuccess(), NBNode::NBNode(), MSE2Collector::notifyEnter(), MSE2Collector::notifyLeave(), MSE2Collector::notifyMove(), MSMeanData::openInterval(), RORouteDef::preComputeCurrentRoute(), NBEdge::reinitNodes(), MSRoute::release(), GNEPOI::setAttribute(), GNEPoly::setAttribute(), Named::setID(), MSSOTLTrafficLightLogic::setToATargetPhase(), NBEdge::splitGeometry(), Distribution_Parameterized::toStr(), MSChargingStation::writeChargingStationOutput(), RODFDetector::writeEmitterDefinition(), RODFDetector::writeSingleSpeedTrigger(), MEInductLoop::writeXMLOutput(), and MSE3Collector::writeXMLOutput().
|
protectedinherited |
list of indices that are ignored in mesoscopic simulatino
Definition at line 436 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::adaptLinkInformationFrom(), MSTrafficLightLogic::ignoreLinkIndex(), and MSTrafficLightLogic::init().
|
protectedinherited |
The list of LaneVectors; each vector contains the incoming lanes that belong to the same link index.
Definition at line 418 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::adaptLinkInformationFrom(), MSTrafficLightLogic::addLink(), calculateEtaDiff(), calculateEtaRatio(), MSTrafficLightLogic::getLanesAt(), MSTrafficLightLogic::getLaneVectors(), MSDeterministicHiLevelTrafficLightLogic::init(), MSRailSignal::init(), MSDelayBasedTrafficLightLogic::init(), MSActuatedTrafficLightLogic::init(), MSTrafficLightLogic::init(), MSSOTLTrafficLightLogic::init(), init(), and resetLaneCheck().
|
protectedinherited |
The list of LinkVectors; each vector contains the links that belong to the same link index.
Definition at line 415 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::adaptLinkInformationFrom(), MSTrafficLightLogic::addLink(), calculateEtaDiff(), calculateEtaRatio(), MSTrafficLightLogic::collectLinkStates(), MSTrafficLightLogic::getLinkIndex(), MSTrafficLightLogic::getLinks(), MSTrafficLightLogic::getLinksAt(), MSRailCrossing::init(), MSDeterministicHiLevelTrafficLightLogic::init(), MSRailSignal::init(), MSActuatedTrafficLightLogic::init(), MSSOTLTrafficLightLogic::init(), init(), MSTrafficLightLogic::initMesoTLSPenalties(), MSOffTrafficLightLogic::rebuildPhase(), resetLaneCheck(), MSTrafficLightLogic::resetLinkStates(), MSTrafficLightLogic::setTrafficLightSignals(), and MSRailSignal::updateCurrentPhase().
|
protectedinherited |
The type of the logic.
Definition at line 412 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::getLogicType().
|
privateinherited |
The key->value map.
Definition at line 103 of file Parameterised.h.
Referenced by Parameterised::clearParameter(), Parameterised::getDouble(), Parameterised::getParameter(), Parameterised::getParametersMap(), Parameterised::knowsParameter(), Parameterised::setParameter(), Parameterised::unsetParameter(), Parameterised::updateParameter(), and Parameterised::writeParams().
|
protectedinherited |
A list of duration overrides.
Definition at line 421 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::addOverridingDuration(), and MSSimpleTrafficLightLogic::trySwitch().
|
protectedinherited |
The list of phases this logic uses.
Definition at line 176 of file MSPhasedTrafficLightLogic.h.
Referenced by MSSOTLWaveTrafficLightLogic::canRelease(), MSPhasedTrafficLightLogic::deletePhases(), MSPhasedTrafficLightLogic::getCurrentPhaseDef(), MSPhasedTrafficLightLogic::getIndexFromOffset(), MSPhasedTrafficLightLogic::getOffsetFromIndex(), MSPhasedTrafficLightLogic::getPhase(), MSPhasedTrafficLightLogic::getPhaseNumber(), MSPhasedTrafficLightLogic::getPhases(), MSPhasedTrafficLightLogic::MSPhasedTrafficLightLogic(), MSSOTLWaveTrafficLightLogic::MSSOTLWaveTrafficLightLogic(), MSPhasedTrafficLightLogic::setPhases(), MSPhasedTrafficLightLogic::setStep(), and MSSOTLTrafficLightLogic::~MSSOTLTrafficLightLogic().
|
protectedinherited |
The id of the logic.
Definition at line 409 of file MSTrafficLightLogic.h.
Referenced by MSTrafficLightLogic::getProgramID(), MSDelayBasedTrafficLightLogic::init(), and MSActuatedTrafficLightLogic::init().
|
privateinherited |
Definition at line 203 of file MSSOTLTrafficLightLogic.h.
Referenced by MSSOTLTrafficLightLogic::countVehicles(), MSSOTLTrafficLightLogic::getSensors(), MSSOTLTrafficLightLogic::init(), MSSOTLTrafficLightLogic::MSSOTLTrafficLightLogic(), MSSOTLTrafficLightLogic::trySwitch(), and MSSOTLTrafficLightLogic::~MSSOTLTrafficLightLogic().
|
protectedinherited |
The current step.
Definition at line 192 of file MSPhasedTrafficLightLogic.h.
Referenced by MSPhasedTrafficLightLogic::changeStepAndDuration(), MSPhasedTrafficLightLogic::getCurrentPhaseDef(), MSPhasedTrafficLightLogic::getCurrentPhaseIndex(), MSPhasedTrafficLightLogic::getPhaseIndexAtTime(), MSPhasedTrafficLightLogic::proceedToNextStep(), MSPhasedTrafficLightLogic::setPhases(), and MSPhasedTrafficLightLogic::setStep().
|
protectedinherited |
The current switch command.
Definition at line 427 of file MSTrafficLightLogic.h.
Referenced by MSPhasedTrafficLightLogic::changeStepAndDuration(), MSSimpleTrafficLightLogic::changeStepAndDuration(), MSTrafficLightLogic::getNextSwitchTime(), and MSTrafficLightLogic::MSTrafficLightLogic().
|
protected |
Definition at line 426 of file MSSwarmTrafficLightLogic.h.
Referenced by calculateEtaDiff(), calculateEtaRatio(), and updateSensitivities().
|
protected |
This pheronome is an indicator of congestion on input lanes.
Its levels refer to the average speed of vehicles passing the input lane: the lower the speed the higher the pheromone.
These levels are updated on every input lane, independently on lights state.
Definition at line 200 of file MSSwarmTrafficLightLogic.h.
Referenced by getDispersionForInputLanes(), getDistanceOfMaxPheroForInputLanes(), getPheromoneForInputLanes(), init(), resetPheromone(), and updatePheromoneLevels().
|
protected |
This pheromone is an indicator of congestion on output lanes.
Its levels refer to the average speed of vehicles passing the output lane: the lower the speed the higher the pheromone.
These levels are updated on every output lane, independently on lights state.
Definition at line 208 of file MSSwarmTrafficLightLogic.h.
Referenced by getDispersionForOutputLanes(), getDistanceOfMaxPheroForOutputLanes(), getPheromoneForOutputLanes(), init(), resetPheromone(), and updatePheromoneLevels().
|
privateinherited |
|
protected |
\factors to scale pheromoneDispersion in range [0, 10]
Definition at line 430 of file MSSwarmTrafficLightLogic.h.
Referenced by getScaleFactorDispersionIn(), and initScaleFactorDispersionIn().
|
protected |
Definition at line 431 of file MSSwarmTrafficLightLogic.h.
Referenced by getScaleFactorDispersionOut(), and initScaleFactorDispersionOut().
|
privateinherited |
Definition at line 214 of file MSSOTLTrafficLightLogic.h.
Referenced by MSSOTLTrafficLightLogic::init(), MSSOTLTrafficLightLogic::MSSOTLTrafficLightLogic(), and MSSOTLTrafficLightLogic::~MSSOTLTrafficLightLogic().
|
protected |
When true indicates that we can skip the evaluation of eta since we've a congestion policy that is lasting too much.
Definition at line 416 of file MSSwarmTrafficLightLogic.h.
Referenced by decideNextPhase(), decidePolicy(), MSSwarmTrafficLightLogic(), and updateSensitivities().
|
protected |
Definition at line 396 of file MSSwarmTrafficLightLogic.h.
Referenced by init(), and ~MSSwarmTrafficLightLogic().
|
protected |
A copy of the target lanes of this phase.
Definition at line 411 of file MSSwarmTrafficLightLogic.h.
Referenced by calculateEtaDiff(), calculateEtaRatio(), and decideNextPhase().
|
privateinherited |
Definition at line 217 of file MSSOTLTrafficLightLogic.h.
Referenced by MSSOTLTrafficLightLogic::getPhaseIndexWithMaxCTS(), MSSOTLTrafficLightLogic::getTargetPhaseMaxLastSelection(), MSSOTLTrafficLightLogic::isThresholdPassed(), MSSOTLTrafficLightLogic::resetCTS(), MSSOTLTrafficLightLogic::setupCTS(), and MSSOTLTrafficLightLogic::updateCTS().
|
privateinherited |
Definition at line 224 of file MSSOTLTrafficLightLogic.h.
Referenced by MSSOTLTrafficLightLogic::getPhaseIndexWithMaxCTS(), MSSOTLTrafficLightLogic::setupCTS(), and MSSOTLTrafficLightLogic::trySwitch().