我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。8 U' F- t8 C# L. N
is3 f* f3 f! D$ n9 U% `/ S; N
rand:real;
: b$ {7 l9 Q7 |do. L0 R3 A4 |3 q# ^: X& w3 ^
@.serverTime:=Labelpretrial.ProcTime;7 P3 |5 d' k+ s+ ?: r& u& `
rand:=Z_uniform(1,0,1);
1 |. C0 [9 e, ^/ b if rand>0.0 and rand<=0.15 then
) P: e8 j3 ?. j1 J: A Labelpretrial.ProcTime:=60*3;
- i7 I5 k- ~6 G, F elseif rand>0.15 and rand<=0.5 then
- a& B1 L6 }' } A; E; w Labelpretrial.ProcTime:=60*4;# d. r6 i9 e; x! E
elseif rand>0.5 and rand<=0.8 then 1 S3 e8 I2 ~" J% i% }
Labelpretrial.ProcTime:=60*5;0 j/ K3 r* F% {3 @9 P8 h) E* q% R
elseif rand>0.8 and rand<=0.95 then
1 j8 M& i# n3 A2 Z6 b4 N5 s V$ H Labelpretrial.ProcTime:=60*6;
4 x% U% U1 j& t. {0 `5 L4 _) q elseif rand>0.95 and rand<=1 then
( o8 I4 v5 t0 T0 x5 Q Labelpretrial.ProcTime:=60*7;8 W/ g6 F( w- p. j$ T4 k
! }1 [+ m$ M. p, c6 Z) m2 Q& h end;6 ?0 G) E3 `- D' I- s6 W
end;: _( t' X' `7 o$ M: M
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |