Home
last modified time | relevance | path

Searched refs:LCA_OVERLAPPING (Results 1 – 7 of 7) sorted by relevance

/dports/cad/sumo/sumo-1.2.0/tools/traci/
H A Dconstants.py1013 LCA_OVERLAPPING = 1 << 13 variable
/dports/cad/sumo/sumo-1.2.0/tools/contributed/traas/src/de/tudresden/sumo/config/
H A DConstants.java1015 public static final int LCA_OVERLAPPING = 1 << 13; field in Constants
/dports/cad/sumo/sumo-1.2.0/src/microsim/
H A DMSLaneChanger.cpp389 << ((newstate & LCA_OVERLAPPING) != 0 ? " (overlap)" : "")
715 blocked |= (blockedByFollower | LCA_OVERLAPPING);
728 blocked |= (blockedByLeader | LCA_OVERLAPPING);
999 << ((blocked & LCA_OVERLAPPING) ? " (overlap)" : "")
H A DMSVehicle.cpp682 … || (myTraciLaneChangePriority == LCP_NOOVERLAP && (state & LCA_OVERLAPPING) == 0)) { in influenceChangeDecision()
683 state &= ~(LCA_BLOCKED | LCA_OVERLAPPING); in influenceChangeDecision()
727 || (myTraciLaneChangePriority == LCP_NOOVERLAP && (state & LCA_OVERLAPPING) == 0)) { in influenceChangeDecision()
728 state &= ~(LCA_BLOCKED | LCA_OVERLAPPING); in influenceChangeDecision()
/dports/cad/sumo/sumo-1.2.0/src/microsim/lcmodels/
H A DMSLCM_SL2015.cpp234 << ((blocked & LCA_OVERLAPPING) ? " (overlap)" : "") in wantsChangeSublane()
2079 return LCA_BLOCKED_RIGHT | LCA_OVERLAPPING;
2085 return LCA_BLOCKED_LEFT | LCA_OVERLAPPING;
2236 result |= (blockType | LCA_OVERLAPPING);
2829 blocked = LCA_OVERLAPPING | LCA_BLOCKED_LEFT;
2837 blocked = LCA_OVERLAPPING | LCA_BLOCKED_RIGHT;
3396 << ((blocked & LCA_OVERLAPPING) ? " (overlap)" : "")
/dports/cad/sumo/sumo-1.2.0/src/utils/xml/
H A DSUMOXMLDefinitions.h1202 LCA_OVERLAPPING = 1 << 13, enumerator
H A DSUMOXMLDefinitions.cpp840 { "overlapping", LCA_OVERLAPPING },