我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
0 `% p8 e" ?" his
5 N' t2 l, p8 I5 x1 Z1 \ rand:real;% p1 J- }* y$ n& B i+ @5 \9 c
do0 ]6 g" b1 q3 R! o. @% i
@.serverTime:=Labelpretrial.ProcTime;
( ^, B0 Y4 f7 q2 W" e) n+ A rand:=Z_uniform(1,0,1);
) F" C" T' t1 r8 Y if rand>0.0 and rand<=0.15 then 0 e3 f7 S# Q* x% J# k$ t( }* X
Labelpretrial.ProcTime:=60*3;- }1 z7 `$ a/ E% Q
elseif rand>0.15 and rand<=0.5 then
2 U" n; j1 Q( V# o% a0 \ Labelpretrial.ProcTime:=60*4;
k8 M) c& i7 w elseif rand>0.5 and rand<=0.8 then 9 x3 d+ q& f! h7 {+ X5 H+ H
Labelpretrial.ProcTime:=60*5;/ Y6 W% r5 v, l: G1 O% g
elseif rand>0.8 and rand<=0.95 then ' _, n3 B( `- y. S0 u
Labelpretrial.ProcTime:=60*6;0 r5 A2 w* [0 c; _! a7 D( G- X9 {8 O
elseif rand>0.95 and rand<=1 then
; N% @' c1 s1 f' W$ x7 O/ P( F5 X Labelpretrial.ProcTime:=60*7;
: r" q7 }6 Q/ J5 e+ H1 k6 |% @
2 b9 z5 g0 m7 K) P% V end;# v$ I9 Z% G3 Q; _% M7 E# a# ]
end;' \" { n7 x+ D5 V, V8 `' h
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |