helper method to extract single jobs
This commit is contained in:
parent
252f3a824e
commit
4204969da9
|
@ -93,6 +93,8 @@ class JobShopProblem(Mapping):
|
||||||
def __len__(self) -> int:
|
def __len__(self) -> int:
|
||||||
return sum(map(len, self.problem_data))
|
return sum(map(len, self.problem_data))
|
||||||
|
|
||||||
|
def get_tasks_by_job(self, job):
|
||||||
|
return self.problem_data[job]
|
||||||
|
|
||||||
class JobShopVisitor(arpeggio.PTNodeVisitor):
|
class JobShopVisitor(arpeggio.PTNodeVisitor):
|
||||||
"""contains visitor functions needed for both jobshop1 (list of instances)
|
"""contains visitor functions needed for both jobshop1 (list of instances)
|
||||||
|
|
Loading…
Reference in a new issue