Skip to content

Controller Interface

commonroad_control.control.control

ControllerInterface

Bases: ABC

Abstract controller interface

Source code in commonroad_control/control/control.py
 5
 6
 7
 8
 9
10
11
12
13
14
15
class ControllerInterface(ABC):
    """
    Abstract controller interface
    """

    @abstractmethod
    def compute_control_input(
        self,
        *args,
    ) -> Any:
        pass