LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
solver_custom.m
1function [QN,UN,RN,TN,CN,XN] = solver_custom(sn, options)
2% [Q,U,R,T,C,X] = SOLVER_CUSTOM(QN, OPTIONS)
3
4% Copyright (c) 2012-2026, Imperial College London
5% All rights reserved.
6
7M = sn.nstations; % number of stations
8K = sn.nclasses; % number of classes
9N = sn.njobs'; % job populations
10rates = sn.rates; % arrival and service rates
11V = sn.visits; % visits
12
13QN = zeros(M,K);
14UN = zeros(M,K);
15RN = zeros(M,K);
16TN = zeros(M,K);
17CN = zeros(1,K);
18XN = zeros(1,K);
19
20line_printf('The solution algorithm needs to be implemented in %s.m: returning with no result.',mfilename);
21end