我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
6 `" s5 q6 s7 Fis+ F+ j1 b' P. e0 z& j. G
rand:real;
( X+ @" f9 p9 {4 Udo9 v) H, a9 r' l$ t7 q
@.serverTime:=Labelpretrial.ProcTime;$ T- j) w! ]8 i% X) Y+ \
rand:=Z_uniform(1,0,1);/ a- |: t& K- r. K: e- B
if rand>0.0 and rand<=0.15 then ( I( f. N' N) c' ^! j6 T
Labelpretrial.ProcTime:=60*3;7 _( s2 b w' M+ {
elseif rand>0.15 and rand<=0.5 then
2 \' _/ Z/ Q1 o' H6 F Labelpretrial.ProcTime:=60*4;, G7 a7 x. E& }1 ]: X: Q
elseif rand>0.5 and rand<=0.8 then
+ S% J& M! F# Y4 Y$ G* R* I" | Labelpretrial.ProcTime:=60*5;: X4 q2 ~5 q7 f* {! h
elseif rand>0.8 and rand<=0.95 then 5 |% n: e+ Z' @" y9 N+ p; q
Labelpretrial.ProcTime:=60*6;$ F7 W, @7 p6 f& Z
elseif rand>0.95 and rand<=1 then
' m1 f0 p3 g: S% H( p$ T Labelpretrial.ProcTime:=60*7;
3 I7 E8 U) n* P $ ^7 {1 A1 H, h4 A. m
end;
2 c0 ]7 I: w+ R% Z0 z' q2 kend;+ P: R/ X- ^$ x8 M8 a9 j$ @, h
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |