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)
20R=Z+sum(L)+max(L)*(N-1);
23 R=R+(L(ist)-max(L))*pfqn_qzgbup(L,N-1,Z,ist);
26X=2*N/(R+sqrt(R^2-4*Z*max(L)*N));