def get_algorithm()

in planner/config.py [0:0]


def get_algorithm(short_name: str, *args, **kwargs) -> SchedulingAlgorithm:
    """
    This is the official registry of all available planning algorithms
    """
    registry = {
        "do_nothing": NullAlgorithm,
        "return_zero": ReturnZero,
        "right_based": RightBased,
    }
    return registry[short_name](*args, **kwargs)