Home
last modified time | relevance | path

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

/dports/cad/sumo/sumo-1.2.0/src/microsim/lcmodels/
H A DMSLCM_DK2008.cpp180 … if (neighLead.first != 0 && (neighLead.first->getLaneChangeModel().getOwnState()&LCA_LEFT) != 0) { in wantsChangeToRight()
395 return ret | LCA_LEFT | LCA_STRATEGIC | LCA_URGENT; in wantsChangeToLeft()
445 return ret | LCA_LEFT | LCA_COOPERATIVE | LCA_URGENT; in wantsChangeToLeft()
485 return ret | LCA_LEFT | LCA_SPEEDGAIN | LCA_URGENT; 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);
788 || ((newstate & LCA_LEFT) != 0 && dir > 0)) {
919 && (stateLeft & LCA_LEFT) != 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()
1471 if (lca == LCA_LEFT) { in _wantsChange()
H A DMSLCM_SL2015.cpp1058 const int lcaCounter = (right ? LCA_LEFT : (left ? LCA_RIGHT : LCA_NONE));
1516 && (left || (alternatives & LCA_LEFT) == 0)) {
2448 ? LCA_NONE : (latDist < 0 ? LCA_RIGHT : LCA_LEFT));
2634 || ((retTraCI & LCA_LEFT) != 0 && laneOffset > 0)) {
/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A Dconstants.py983 LCA_LEFT = 1 << 1 variable
1021 LCA_WANTS_LANECHANGE = LCA_LEFT | LCA_RIGHT
H A D_vehicle.py876 return state & tc.LCA_LEFT != 0
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/config/
H A DConstants.java985 public static final int LCA_LEFT = 1 << 1; 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.h1172 LCA_LEFT = 1 << 1, enumerator
1210 LCA_WANTS_LANECHANGE = LCA_LEFT | LCA_RIGHT,
H A DSUMOXMLDefinitions.cpp831 { "left", LCA_LEFT },
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLaneChanger.cpp335 if ((stateLeft & LCA_LEFT) != 0 && (stateLeft & LCA_BLOCKED) == 0) { in change()
339 if ((stateLeft & LCA_LEFT) != 0 && (stateLeft & LCA_URGENT) != 0) { in change()
401 const int dir = (state & LCA_RIGHT) != 0 ? -1 : ((state & LCA_LEFT) != 0 ? 1 : 0);
H A DMSLaneChangerSublane.cpp173 | (mayChange(1) ? LCA_LEFT : LCA_NONE)); in change()
H A DMSVehicle.cpp708 ((state & LCA_LEFT) != 0 && changeRequest != REQUEST_LEFT) || in influenceChangeDecision()
737 return state | LCA_LEFT; in influenceChangeDecision()
5163 if ((state & LCA_LEFT) != 0 && blinkerManoeuvre) {
/dports/cad/sumo/sumo-1.2.0/src/microsim/cfmodels/
H A DMSCFModel_CC.cpp118 if (traciState & LCA_LEFT && traciState & LCA_SPEEDGAIN) { in performAutoLaneChange()