Skip to content

Commit

Permalink
Add Schedule class
Browse files Browse the repository at this point in the history
  • Loading branch information
Pabloo22 committed Feb 13, 2024
1 parent acd5a55 commit a201520
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
4 changes: 4 additions & 0 deletions job_shop_lib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
from job_shop_lib.operation import Operation
from job_shop_lib.job_shop_instance import JobShopInstance
from job_shop_lib.scheduled_operation import ScheduledOperation
from job_shop_lib.schedule import Schedule


__all__ = [
"Operation",
"JobShopInstance",
"ScheduledOperation",
"Schedule",
]
5 changes: 5 additions & 0 deletions job_shop_lib/schedule.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from job_shop_lib import ScheduledOperation


class Schedule:
pass

0 comments on commit a201520

Please sign in to comment.