我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
( l- k& y! U& h+ U4 e" v% yis
5 l, `5 R+ _$ D) h/ S) Z% a+ u rand:real;
9 S0 A+ H9 q( m+ b7 U; D, ^& `do1 h8 a$ x5 F1 B% V& Y7 a
@.serverTime:=Labelpretrial.ProcTime; C% {+ {3 {* Q2 [( T
rand:=Z_uniform(1,0,1);
' g1 w. s* h7 w/ `! I' T* } if rand>0.0 and rand<=0.15 then % Y1 x x6 R& H2 \+ v' K
Labelpretrial.ProcTime:=60*3;: A ~; |: a" x1 K9 T* ?
elseif rand>0.15 and rand<=0.5 then
* j/ j5 F" w: A/ a# j Labelpretrial.ProcTime:=60*4;
3 ]+ ~# h5 C0 z x/ ^) q* z8 M- d. k elseif rand>0.5 and rand<=0.8 then 0 |/ z2 a9 x7 Z |$ w; H% F
Labelpretrial.ProcTime:=60*5;
2 V3 j, x# R! y& o elseif rand>0.8 and rand<=0.95 then % ^' x5 {: v% I. C, ^2 a$ M
Labelpretrial.ProcTime:=60*6;
/ E8 S: C0 ]# E. E+ v elseif rand>0.95 and rand<=1 then
9 S/ {8 M7 q% f' E! ?. G( o: `, ~ Labelpretrial.ProcTime:=60*7;- f# o$ @0 U$ r( d) S# N6 ]0 @
! |' \& Y! P1 b1 j6 [
end;: `* h8 d; e! E5 j2 m4 J3 p7 W
end;! G% j/ r6 W2 [0 X6 q
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |