我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
+ X g& u5 t- m7 k* Z- Q! fis% Z& ^1 _) j8 E C7 s t
rand:real;
3 }$ Y7 Z: h7 |3 C+ ^3 hdo9 Y8 [! E) s! P8 Z
@.serverTime:=Labelpretrial.ProcTime;
" ?4 d1 U5 N: ^( x rand:=Z_uniform(1,0,1);
3 j" w+ j ]# }% U( T1 \ if rand>0.0 and rand<=0.15 then # y; Q* G+ K- D1 m, T
Labelpretrial.ProcTime:=60*3;
0 d- k8 Q9 R" U4 t8 B; ?5 a elseif rand>0.15 and rand<=0.5 then
) s t7 _' J6 |4 I Labelpretrial.ProcTime:=60*4;
- h8 N* T6 k4 D elseif rand>0.5 and rand<=0.8 then * I& n( T* _. I" J0 R
Labelpretrial.ProcTime:=60*5;
, K. V. ~' e1 t* o0 M' e elseif rand>0.8 and rand<=0.95 then 4 z$ D/ c8 q" x, z$ R1 I3 J
Labelpretrial.ProcTime:=60*6;( z' M: Q, G, o/ w
elseif rand>0.95 and rand<=1 then
4 C0 k- ]) x9 z: |- w$ }1 E Labelpretrial.ProcTime:=60*7;
/ f4 E0 I/ I1 F% }8 h
) k7 I* d( ~+ f: C( g end;
. l0 s! {/ ^9 o1 w8 Uend;
/ I& p4 `/ S! w; ~系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |