updateLaneChangeDelay(dt);
return false;
}
// if not in lane-changing process do determine if new lane is more attractive and lane change is possible
LaneChangeDecision lcDecision = laneChangeModel.makeDecision(roadSegment);
final int laneChangeDirection = lcDecision.getDirection();
// initiates a lane change: set targetLane to new value the lane will be assigned by the vehicle container !!
if (laneChangeDirection != Lanes.NO_CHANGE) {
setTargetLane(lane + laneChangeDirection);
resetDelay();