我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
' I; ?: o/ F& b" W# o" Dis
* |1 z# F, \3 }- o( V4 a0 b rand:real;
2 I0 R H# ~. w. kdo% l9 t, _' o2 a
@.serverTime:=Labelpretrial.ProcTime;
+ Y; p8 Y! ]0 L% N# P. @7 H rand:=Z_uniform(1,0,1);3 G( z6 X4 w$ T; Y5 [$ E
if rand>0.0 and rand<=0.15 then 6 m& k6 F/ ]) Q3 {, n6 m
Labelpretrial.ProcTime:=60*3;' O3 L2 e4 u. `, R
elseif rand>0.15 and rand<=0.5 then
7 A) y a; e- } Labelpretrial.ProcTime:=60*4;
0 I) @) [" K; Z( V; M# w2 d( [ elseif rand>0.5 and rand<=0.8 then
# _ p/ ]8 `/ l% ?* [ Labelpretrial.ProcTime:=60*5;
s9 D& Q1 K- ^8 p& L' q' } elseif rand>0.8 and rand<=0.95 then 6 i5 _* Y ?7 l6 g% a9 E2 `
Labelpretrial.ProcTime:=60*6;
8 U6 j8 k. T! U0 f" F1 R$ W elseif rand>0.95 and rand<=1 then 6 d( v2 r7 A7 L7 M- j+ h: X
Labelpretrial.ProcTime:=60*7;2 e( c# U/ i" Q' v1 i/ F
9 h$ v7 x4 y% @. b3 _+ F- ~7 t) S6 T
end;6 F% H( {- f# U/ h
end;
( \% _! f9 Y$ Y% {& v3 n- i3 n系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |