LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
Enabling.m
1classdef Enabling < InputSection
2 % An input section for jobs to wait for service.
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 properties
8 size;
9 end
10
11 methods
12 %Constructor
13 function self = Enabling(classes)
14 % SELF = ENABLING(CLASSES)
15
16 self@InputSection('Enabling');
17 self.size = -1;
18 self.schedPolicy = SchedStrategyType.PR;
19 end
20 end
21
22end
23