我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。$ q. r# y7 j6 [% j: d+ W
is
% i* B' }, a6 L$ S- N% g% x rand:real;
) B6 Q' A2 c0 i( Q8 ?$ hdo
1 ?& l0 s L f. g, n @.serverTime:=Labelpretrial.ProcTime;
* B5 P b( @4 P% e4 p) j* q rand:=Z_uniform(1,0,1);) V8 j0 R$ o# g
if rand>0.0 and rand<=0.15 then ; W7 {6 u0 ?3 @
Labelpretrial.ProcTime:=60*3;# H' _8 p! E/ o0 _3 I* e
elseif rand>0.15 and rand<=0.5 then # ~- Q0 G" I+ P1 s- O! W/ f
Labelpretrial.ProcTime:=60*4;5 N: @) c- ~& n7 H. a8 C9 j
elseif rand>0.5 and rand<=0.8 then
. A* Q) j! p& r0 s9 I, v Labelpretrial.ProcTime:=60*5;: r5 N T/ _( ]: X% [2 Y! g7 X+ d. } c, a9 x
elseif rand>0.8 and rand<=0.95 then
- }6 L; i, [- v/ n9 f T+ o Labelpretrial.ProcTime:=60*6;, b# b+ \5 y' |# M& Q
elseif rand>0.95 and rand<=1 then ! }! h9 P: a- R) t/ }0 j
Labelpretrial.ProcTime:=60*7;
* l+ M( F5 V t) h
0 ^3 X6 H, U& v; Q& \, S7 m+ ` end;
: x6 O$ i4 q; Y6 L$ M. Z% rend;, ?! \/ U" P& @! ?$ T; \
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |