我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。! o; k T! s6 R, \7 a
is( ~5 X8 x9 t& E9 ^. t9 Y
rand:real; S2 S% R) a& ^! e
do
0 [, G7 R9 T0 L% T) d. {0 w* k2 I @.serverTime:=Labelpretrial.ProcTime;0 ~% j9 w& I7 s6 g K
rand:=Z_uniform(1,0,1);
. b8 _5 [4 V: m5 q if rand>0.0 and rand<=0.15 then $ E. P5 Q7 ]0 S D7 q
Labelpretrial.ProcTime:=60*3;
! X a4 s2 L" X" O6 }2 o elseif rand>0.15 and rand<=0.5 then ( E/ g& v/ g1 k* e) Z% X$ ~
Labelpretrial.ProcTime:=60*4; ?* R* W1 O$ o2 v1 \* z
elseif rand>0.5 and rand<=0.8 then
9 z8 k5 W% r- b& U; E$ m Labelpretrial.ProcTime:=60*5;9 X5 B3 E3 T9 c9 Q1 _: O
elseif rand>0.8 and rand<=0.95 then 7 _1 E9 Q9 w1 }. V% }& g* o
Labelpretrial.ProcTime:=60*6;
- F2 ^5 D6 f' n/ F3 ?' R3 z& x) O$ E elseif rand>0.95 and rand<=1 then
2 v+ y z5 m, j$ w% n( T( N Labelpretrial.ProcTime:=60*7;$ m# N V4 c' _* u8 m1 Q
) M( k' c. `/ R& h' q' ~3 g+ ^ end;: u- k& @$ f) e n' N: f
end;
# P2 ^3 `- }6 I1 j系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |