我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
* m! F% Z5 J4 f( z5 M: w4 Fis
6 Z- g9 Z/ N; C( b0 ? rand:real;
+ O9 S3 Z3 Q4 `do
+ {* m4 e0 S+ M @.serverTime:=Labelpretrial.ProcTime;, {9 z Q9 C" @- d3 J& m
rand:=Z_uniform(1,0,1);
# U& I- K6 V8 R$ d l if rand>0.0 and rand<=0.15 then
# S' g1 @, B/ w6 B3 e8 n Labelpretrial.ProcTime:=60*3;
2 f" Z- W) h* U% [9 P& E$ ^ elseif rand>0.15 and rand<=0.5 then
' O$ I# K6 M2 e- i Labelpretrial.ProcTime:=60*4;+ V2 D7 l1 h. I
elseif rand>0.5 and rand<=0.8 then 7 l B3 u7 x- B' N. f
Labelpretrial.ProcTime:=60*5;
1 v: ~7 ?/ G+ ~8 d elseif rand>0.8 and rand<=0.95 then
' u$ d6 u4 V, ]1 R2 b1 k( E Labelpretrial.ProcTime:=60*6;" G( n. u% n( W) w6 O, C2 L5 g
elseif rand>0.95 and rand<=1 then
$ E1 y" p0 W' B0 {5 ?) \2 M Labelpretrial.ProcTime:=60*7;$ J8 x% K" ^7 e$ e# t: X
% \+ [5 g- Y& \$ V9 ]# |) |
end;
. n9 q& I0 x; x+ ]/ T' M3 U [end;8 T: [( v$ a# A/ Y
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |