package org.opentrafficsim.road.gtu.lane.control; import org.opentrafficsim.base.parameters.Parameters; /** * Interface for tactical planners that use control. *
* Copyright (c) 2013-2022 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
* BSD-style license. See OpenTrafficSim License.
*
* @version $Revision$, $LastChangedDate$, by $Author$, initial version Apr 12, 2019
* @author Alexander Verbraeck
* @author Peter Knoppers
* @author Wouter Schakel
*/
public interface ControlTacticalPlanner
{
/**
* Returns the system settings. This is used for sub-components that have no direct access to the settings. For example,
* when initiating sensor perception.
* @return Parameters; system settings
*/
Parameters getSettings();
}