Home
last modified time | relevance | path

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

/dports/cad/sumo/sumo-1.2.0/src/microsim/lcmodels/
H A DMSLCM_DK2008.cpp188 return ret | LCA_RIGHT | LCA_STRATEGIC | LCA_URGENT; in wantsChangeToRight()
229 return ret | LCA_RIGHT | LCA_COOPERATIVE | LCA_URGENT; in wantsChangeToRight()
280 return ret | LCA_RIGHT | LCA_SPEEDGAIN; in wantsChangeToRight()
387 …if (neighLead.first != 0 && (neighLead.first->getLaneChangeModel().getOwnState()&LCA_RIGHT) != 0) { in wantsChangeToLeft()
H A DMSAbstractLaneChangeModel.cpp323 LCA_RIGHT | LCA_LEFT
781 const int dir = (newstate & LCA_RIGHT) != 0 ? -1 : ((newstate & LCA_LEFT) != 0 ? 1 : 0);
787 } else if (((newstate & LCA_RIGHT) != 0 && dir < 0)
912 && (stateRight & LCA_RIGHT) != 0
H A DMSLCM_SL2015.cpp1058 const int lcaCounter = (right ? LCA_LEFT : (left ? LCA_RIGHT : LCA_NONE));
1512 && (right || (alternatives & LCA_RIGHT) == 0)) {
2448 ? LCA_NONE : (latDist < 0 ? LCA_RIGHT : LCA_LEFT));
2633 } else if (((retTraCI & LCA_RIGHT) != 0 && laneOffset < 0)
H A DMSLCM_LC2013.cpp1139 const int lca = (right ? LCA_RIGHT : LCA_LEFT); in _wantsChange()
1141 const int lcaCounter = (right ? LCA_LEFT : LCA_RIGHT); in _wantsChange()
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A Dconstants.py985 LCA_RIGHT = 1 << 2 variable
1021 LCA_WANTS_LANECHANGE = LCA_LEFT | LCA_RIGHT
H A D_vehicle.py874 return state & tc.LCA_RIGHT != 0
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/config/
H A DConstants.java987 public static final int LCA_RIGHT = 1 << 2; field in Constants
1023 public static final int LCA_WANTS_LANECHANGE = LCA_LEFT | LCA_RIGHT;
/dports/cad/sumo/sumo-1.2.0/src/utils/xml/
H A DSUMOXMLDefinitions.h1174 LCA_RIGHT = 1 << 2, enumerator
1210 LCA_WANTS_LANECHANGE = LCA_LEFT | LCA_RIGHT,
H A DSUMOXMLDefinitions.cpp832 { "right", LCA_RIGHT },
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLaneChanger.cpp318 if ((stateRight & LCA_RIGHT) != 0 && (stateRight & LCA_BLOCKED) == 0) { in change()
322 if ((stateRight & LCA_RIGHT) != 0 && (stateRight & LCA_URGENT) != 0) { in change()
401 const int dir = (state & LCA_RIGHT) != 0 ? -1 : ((state & LCA_LEFT) != 0 ? 1 : 0);
H A DMSLaneChangerSublane.cpp172 LaneChangeAction alternatives = (LaneChangeAction)((mayChange(-1) ? LCA_RIGHT : LCA_NONE) in change()
H A DMSVehicle.cpp709 ((state & LCA_RIGHT) != 0 && changeRequest != REQUEST_RIGHT) || in influenceChangeDecision()
739 return state | LCA_RIGHT; in influenceChangeDecision()
5165 } else if ((state & LCA_RIGHT) != 0 && blinkerManoeuvre) {
/dports/cad/sumo/sumo-1.2.0/src/microsim/cfmodels/
H A DMSCFModel_CC.cpp141 if (traciState & LCA_RIGHT && traciState & LCA_KEEPRIGHT) { in performAutoLaneChange()