LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
getProbSysAggr.m
1function Pn = getProbSysAggr(self)
2% PN = GETPROBSYSSTATEAGGR()
3
4if ~isfield(self.options,'keep')
5 self.options.keep = false;
6end
7T0 = tic;
8sn = self.getStruct;
9%if self.model.isStateValid
10 Pn = solver_ctmc_jointaggr(sn, self.options);
11 self.result.('solver') = getName(self);
12 self.result.Prob.joint = Pn;
13%else
14% line_error(mfilename,'The model state is invalid.');
15%end
16runtime = toc(T0);
17self.result.runtime = runtime;
18end