View Javadoc
1   package org.opentrafficsim.road.gtu.lane.control;
2   
3   import org.opentrafficsim.base.parameters.Parameters;
4   
5   /**
6    * Interface for tactical planners that use control.
7    * <p>
8    * Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
9    * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
10   * <p>
11   * @version $Revision$, $LastChangedDate$, by $Author$, initial version Apr 12, 2019 <br>
12   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
13   * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a>
14   * @author <a href="http://www.transport.citg.tudelft.nl">Wouter Schakel</a>
15   */
16  
17  public interface ControlTacticalPlanner
18  {
19  
20      /**
21       * Returns the system settings. This is used for sub-components that have no direct access to the settings. For example, 
22       * when initiating sensor perception.
23       * @return Parameters; system settings
24       */
25      Parameters getSettings();
26      
27  }