我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。1 x' n) N7 @' N7 }4 A$ n
is9 o9 E9 ^5 j4 _6 F+ q
rand:real;. k4 r( _# ~" U9 c5 p W& y9 R
do/ O& ]1 q4 r2 E
@.serverTime:=Labelpretrial.ProcTime;/ l8 s2 {0 U7 R* [1 L, {
rand:=Z_uniform(1,0,1);) P4 x8 V L2 U5 y! m+ B' c
if rand>0.0 and rand<=0.15 then / h+ x; ^# o; \1 t' Q. e5 R0 H% ]
Labelpretrial.ProcTime:=60*3;' I1 U) [0 W1 J9 i/ J" B
elseif rand>0.15 and rand<=0.5 then 6 E( _0 y3 p/ i/ q, I9 {( Q4 D* ]- i
Labelpretrial.ProcTime:=60*4;
6 }3 n" h, s+ ^9 d) o0 D elseif rand>0.5 and rand<=0.8 then ' f# q1 O4 c5 U8 l- P: x1 \
Labelpretrial.ProcTime:=60*5;
( }/ L% y) I( S+ i0 @6 m. R elseif rand>0.8 and rand<=0.95 then ) g1 C P! A& q/ K8 @' a4 X$ g
Labelpretrial.ProcTime:=60*6;
( n* q. r( @, X& r elseif rand>0.95 and rand<=1 then - G& |, f7 [: e A7 c
Labelpretrial.ProcTime:=60*7;
7 g T3 d! o/ B9 R. S) w. ? ; U8 k. `& E; M+ C6 f
end;# F0 ]* u* ]- k% J% a. A I$ C- h' ^- D
end;; e& K) Q* x# @- f5 f
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |