我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
- i% ^- e$ k% V$ Xis
5 ^2 D5 h6 ^. k' ]' Q: i& |- H1 v rand:real;* Q. o3 u4 F$ X0 L- D! v
do" i ~( T, V3 Y# w- a5 r) U
@.serverTime:=Labelpretrial.ProcTime;1 z, \9 R2 F% @( @5 K# d
rand:=Z_uniform(1,0,1);
+ ?5 H+ a: g+ h if rand>0.0 and rand<=0.15 then / e- g7 c$ {4 u6 i, M/ b# z- U
Labelpretrial.ProcTime:=60*3;
% D: ^* \4 I! W, d9 @ N" Z elseif rand>0.15 and rand<=0.5 then 2 U1 Y3 N+ d0 V5 L2 k& P5 I
Labelpretrial.ProcTime:=60*4;
3 x% `! Z* e p( f elseif rand>0.5 and rand<=0.8 then
" m! d3 h5 R- _0 {$ r" `: l) y Labelpretrial.ProcTime:=60*5;
/ j& o- s( z5 ?: {3 x, t elseif rand>0.8 and rand<=0.95 then
3 p7 n1 S: _ h2 a0 b9 I Labelpretrial.ProcTime:=60*6;" B# Y6 u2 T$ v4 _' `( A3 M& K4 j
elseif rand>0.95 and rand<=1 then . s4 o. q( ]3 }/ K# N# ^/ ^
Labelpretrial.ProcTime:=60*7;
- o9 }, P B* ]0 n9 I 2 n! X6 ]$ {" W+ \
end;* P: Z y- ^5 W }; Q Q- \5 Z) }
end;! U8 X$ H6 A% W+ `* e$ ?
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |