131132133134135136137138139140
* * @exception NonErgodicException queue is not ergodic (U > 1 o U < 0) */ public double utilization() throws NonErgodicException { if ((lambda * s) > 1) { throw new NonErgodicException(); } else { return (lambda * s); } }
78798081828384858687
* @return */ @Override public double utilization() throws NonErgodicException { if ((lambda * s) > numberOfServer) { throw new NonErgodicException(); } else { return (lambda * s); } }