4 % @brief Upper asymptotic bound on throughput (Zahorjan-Gittelsohn-Schweitzer-Bryant).
10 % @brief Upper asymptotic bound on throughput (Zahorjan-Gittelsohn-Schweitzer-Bryant).
11 % @fn pfqn_xzgsbup(L, N, Z)
12 % @param L Service demand vector.
13 % @param N Population.
14 % @param Z Think time.
15 % @
return X Upper bound on throughput.
18function X=pfqn_xzgsbup(L,N,Z)
24 R=R+(L(ist)-Lmax)*pfqn_qzgbup(L,N-1,Z,ist);
27discriminant = R^2 - 4*Z*Lmax*N;
31X=2*N/(R+sqrt(discriminant));