LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
ServiceStation.m
1classdef ServiceStation < Station
2 % An abstract class for stations with service
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 properties
8 schedPolicy;
9 schedStrategy;
10 schedStrategyPar;
11 serviceProcess;
12 end
13
14 methods (Hidden)
15 %Constructor
16 function self = ServiceStation(name)
17 % SELF = STATION(NAME)
18
19 self@Station(name);
20 end
21 end
22
23 methods
24 function distrib = getServiceProcess(self, oclass)
25 distrib = self.getService{oclass};
26 end
27 end
28end