Home
last modified time | relevance | path

Searched refs:LCA_BLOCKED (Results 1 – 13 of 13) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLaneChanger.cpp318 if ((stateRight & LCA_RIGHT) != 0 && (stateRight & LCA_BLOCKED) == 0) { in change()
335 if ((stateLeft & LCA_LEFT) != 0 && (stateLeft & LCA_BLOCKED) == 0) { in change()
388 << ((newstate & LCA_BLOCKED) != 0 ? " (blocked)" : "")
402 const bool execute = dir != 0 && ((state & LCA_BLOCKED) == 0);
879 …if ((state & LCA_BLOCKED) == 0 && (state & LCA_WANTS_LANECHANGE) != 0 && MSGlobals::gLaneChangeDur…
955 if ((state & LCA_BLOCKED) == 0) {
998 << ((blocked & LCA_BLOCKED) ? " (blocked)" : "")
1318 bool changingAllowed = (state & LCA_BLOCKED) == 0;
H A DMSLaneChangerSublane.cpp188 if ((decision.state & LCA_WANTS_LANECHANGE) != 0 && (decision.state & LCA_BLOCKED) == 0) { in change()
230 …_WANTS_LANECHANGE) != 0 && (result.state & LCA_URGENT) != 0 && (result.state & LCA_BLOCKED) != 0) {
432 || ((vehicle->getLaneChangeModel().getPrevState() & LCA_BLOCKED) != 0))
H A DMSVehicle.cpp683 state &= ~(LCA_BLOCKED | LCA_OVERLAPPING); in influenceChangeDecision()
728 state &= ~(LCA_BLOCKED | LCA_OVERLAPPING); in influenceChangeDecision()
5156 (state & LCA_KEEPRIGHT) == 0 || (state & LCA_BLOCKED) == 0));
/dports/cad/sumo/sumo-1.2.0/src/microsim/lcmodels/
H A DMSLCM_DK2008.cpp236 if ((blocked & LCA_BLOCKED) != 0) { in wantsChangeToRight()
451 if ((blocked & LCA_BLOCKED) != 0) { in wantsChangeToLeft()
537 if ((state & LCA_BLOCKED) != 0) { in patchSpeed()
H A DMSAbstractLaneChangeModel.cpp913 && (stateRight & LCA_BLOCKED) != 0) {
920 && (stateLeft & LCA_BLOCKED) != 0) {
H A DMSLCM_SL2015.cpp233 << ((blocked & LCA_BLOCKED) ? " (blocked)" : "") in wantsChangeSublane()
253 if ((state & (LCA_STRATEGIC | LCA_SPEEDGAIN)) != 0 && (state & LCA_BLOCKED) != 0) { in setOwnState()
386 if ((state & LCA_WANTS_LANECHANGE) != 0 && (state & LCA_BLOCKED) != 0) { in _patchSpeed()
2383 const bool can1 = ((sd1.state & LCA_BLOCKED) == 0);
2384 const bool can2 = ((sd2.state & LCA_BLOCKED) == 0);
3395 << ((blocked & LCA_BLOCKED) ? " (blocked)" : "")
H A DMSLCM_LC2013.cpp308 if ((state & LCA_WANTS_LANECHANGE) != 0 && (state & LCA_BLOCKED) != 0) { in _patchSpeed()
/dports/cad/sumo/sumo-1.2.0/src/microsim/cfmodels/
H A DMSCFModel_CC.cpp120 if (!(state.first & LCA_BLOCKED)) { in performAutoLaneChange()
125 if (mState.first & LCA_BLOCKED) { in performAutoLaneChange()
143 if (!(state.first & LCA_BLOCKED)) { in performAutoLaneChange()
148 if (mState.first & LCA_BLOCKED) { in performAutoLaneChange()
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A Dconstants.py1033 LCA_BLOCKED = LCA_BLOCKED_LEFT | LCA_BLOCKED_RIGHT | LCA_INSUFFICIENT_SPACE | LCA_INSUFFICIENT_SPEED variable
H A D_vehicle.py861 return state != tc.LCA_UNKNOWN and (state & tc.LCA_BLOCKED == 0)
872 if state & tc.LCA_BLOCKED == 0:
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/config/
H A DConstants.java1035 …public static final int LCA_BLOCKED = LCA_BLOCKED_LEFT | LCA_BLOCKED_RIGHT | LCA_INSUFFICIENT_SPAC… field in Constants
/dports/cad/sumo/sumo-1.2.0/src/utils/xml/
H A DSUMOXMLDefinitions.h1222LCA_BLOCKED = LCA_BLOCKED_LEFT | LCA_BLOCKED_RIGHT | LCA_INSUFFICIENT_SPACE | LCA_INSUFFICIENT_SPE… enumerator
H A DSUMOXMLDefinitions.cpp841 { "blocked", LCA_BLOCKED },