LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
updateMetrics.m
1function updateMetrics(self, it)
2switch self.options.method
3 case 'moment3'
4 % this method propagates through the layers 3 moments of the
5 % response time distribution computed from the CDF obtained by the
6 % solvers of the individual layers. In the present implementation,
7 % calls are still assumed to be exponentially distributed.
8 updateMetricsMomentBased(self,it)
9 otherwise
10 % default method for 'default', 'mva', 'nc', etc.
11 updateMetricsDefault(self,it)
12end
13end