我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
- C3 X7 w, h( F& I+ p8 yis
( i3 e2 D: g& H2 S. n8 k rand:real;! _' r& K# r2 S3 j% q* V$ z3 X
do( W" G* m- }' A0 C3 p+ _4 E
@.serverTime:=Labelpretrial.ProcTime;7 F+ n/ Q( e6 J$ |
rand:=Z_uniform(1,0,1);
9 C# ]( ~! K3 |% T, y- q if rand>0.0 and rand<=0.15 then
) V5 M+ T& V" |7 m& Y1 F5 w Labelpretrial.ProcTime:=60*3;) @" ^/ E1 b5 y! e0 H" K
elseif rand>0.15 and rand<=0.5 then
: ?( Z; f+ Z) g( J( W7 f Labelpretrial.ProcTime:=60*4;2 y! u6 V( ^6 P; ~* o, V
elseif rand>0.5 and rand<=0.8 then 2 L' ~; Z: P w1 {+ h$ V
Labelpretrial.ProcTime:=60*5;
; B5 M0 _: t/ c, I( t ?$ `3 a elseif rand>0.8 and rand<=0.95 then
$ W: Y5 {9 l+ E" g% h& R Labelpretrial.ProcTime:=60*6;
. a& g- i& Q4 {, K- d! T elseif rand>0.95 and rand<=1 then
1 {, k8 G V5 l" n$ C$ W& L3 y Labelpretrial.ProcTime:=60*7;
) [7 @4 A: M( \. G: e8 l
# }5 K3 T' [! U+ ?" t) { end;
- Y) ^/ U4 I8 V: W4 |2 q; f$ T+ ^% E& Gend;
+ ~9 {$ R6 z6 E" R系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |