View Javadoc
1   package org.opentrafficsim.road.gtu.lane.tactical.lmrs;
2   
3   import org.opentrafficsim.road.gtu.lane.LaneBasedGTU;
4   import org.opentrafficsim.road.gtu.lane.perception.LanePerception;
5   
6   /**
7    * Dummy desire disabling lane changes when used as the only incentive.
8    * @author Wouter Schakel
9    */
10  public class IncentiveDummy implements MandatoryIncentive {
11  
12  	/** {@inheritDoc} */
13  	@Override
14  	public Desire determineDesire(final LaneBasedGTU gtu, final LanePerception perception) {
15  		return new Desire(0, 0);
16  	}
17  
18  }