Commit ee54fb69 authored by Brewer, Wes's avatar Brewer, Wes
Browse files

Comment out 'deadline' schedule policy as it is not yet supported

parent de5c1c00
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3,9 +3,9 @@ from enum import Enum
class PolicyType(Enum):
    FCFS = 'fcfs'
    BACKFILL = 'backfill'
    DEADLINE = 'deadline'
    PRIORITY = 'priority'
    SJF = 'sjf'
    #DEADLINE = 'deadline' # not yet supported
    

class Policy: