Skip to content

Commit

Permalink
association class implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
gokulvasan committed Feb 6, 2016
1 parent cbc0efa commit 3474550
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,8 @@ in a distributed environment, but This is a overhead on a system.

Capacity Shifting is a methodical approach to remove slots but still provide the flexibility and guarantee provided by slot shifting.

SIMSO Modification:
slot shifting needs a seperate data structure called interval which needs to be associated with job of the task.
To make this happen simso itself needs modification to adapt to different DS.
In this implementation I will try to make this modification as generic as possible so that the modification
can be used for other schedulers as well.
19 changes: 19 additions & 0 deletions ss_tsaheylu.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

"""
This class will read the input file containing interval and task
parse them into interval and task object.
"""
class parser:
def __init__(self):
pass

"""
This class will create association of task_job:interval
and interval relation window.
This class should take parsed data from class parser and
create the association
"""
class tsaheylu:
def __init__(self):
pass

0 comments on commit 3474550

Please sign in to comment.