Source code for sequencing.lpt_scheduling

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


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