Source code for sequencing.spt_scheduling

from ware_ops_algos.algorithms import SPTScheduling
from ware_ops_pipes.pipelines.templates.template_1 import AbstractScheduling


[docs] class SPTScheduler(AbstractScheduling):
[docs] abstract = False
def _get_inited_scheduler(self): scheduler = SPTScheduling() return scheduler