1function RD = getCdfRespT(self, R) %#ok<INUSD>
4% Not available: SolverSSA does not record per-job response times.
6% A simulator must report what it measured. The inherited NetworkSolver
7% implementation fabricates an exponential law with the right mean, which
8% carries no information about the tail and would be indistinguishable, to the
9% caller, from a measured distribution. SSA samples state trajectories, not
10% per-job sojourn times, so there
is nothing to build an empirical CDF from.
12% Use SolverJMT (whose getCdfRespT
is the ecdf of the logged per-job response
13% times), or getPerctRespT(...,
'forktail') for the analytical fork-join tail.
15% Copyright (c) 2012-2026, Imperial College London
18line_error(mfilename, ['SolverSSA does not record per-job response times, so it cannot return an ' ...
19 'empirical response time CDF. Use SolverJMT for a measured CDF, or ' ...
20 'getPerctRespT(...,''forktail'') for the analytical fork-join tail.']);