我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
8 J: w7 Z2 K' y/ Ais `( L5 @# I5 ?6 K, g- U3 y
rand:real;, _2 M6 a4 n' b8 P8 D
do
8 Q# @6 y' w3 u" [0 Q @.serverTime:=Labelpretrial.ProcTime;# G% q& S X8 X: G# I. S. Z& [
rand:=Z_uniform(1,0,1);
6 ]! [, ]/ a7 T% v6 h/ j' n if rand>0.0 and rand<=0.15 then
9 t" o0 n. q% i- `7 O a Labelpretrial.ProcTime:=60*3;
# }. e5 {$ N+ V/ |8 z9 u! ~ elseif rand>0.15 and rand<=0.5 then
, r, X( y+ d' ^7 k2 x Labelpretrial.ProcTime:=60*4;# y$ @; g$ X& v, f
elseif rand>0.5 and rand<=0.8 then 2 z! {4 |" t! C4 X% \. ]" ]
Labelpretrial.ProcTime:=60*5;
0 D7 v2 K+ g2 M6 s% l1 Q elseif rand>0.8 and rand<=0.95 then . f: y& I1 Y! @# u: P( l |
Labelpretrial.ProcTime:=60*6;- b( o7 V9 |' n7 K4 N
elseif rand>0.95 and rand<=1 then ( [. q# m* S, v8 r
Labelpretrial.ProcTime:=60*7;
/ d- F5 [, z. ?! ^. S( Q3 B" J5 P
( R- h! Y" ^ i% E5 v end;9 L. O4 X8 b& z
end;1 S: F, _/ u N, C9 |' A! \; D9 y
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |