我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。) e l. \( ~% B9 c; f. C2 f
is4 N" k& a* w5 [# c: q
rand:real;
1 f8 d8 f/ o. O4 U% [1 W3 C2 i, Ddo4 f e* r8 p# {7 |
@.serverTime:=Labelpretrial.ProcTime;
9 h4 l9 J, T1 \ rand:=Z_uniform(1,0,1);
. o0 ?$ k$ V/ f6 q$ { L% V) F' { if rand>0.0 and rand<=0.15 then
8 F' v: A- V2 r8 l7 R- u Labelpretrial.ProcTime:=60*3;
& c8 h4 M# C/ R1 x elseif rand>0.15 and rand<=0.5 then 1 M3 O. q, A r& {) k$ i
Labelpretrial.ProcTime:=60*4;2 E: ~+ `$ W, s. T! y! h% _
elseif rand>0.5 and rand<=0.8 then
% |' x8 J/ n K) C$ Z Labelpretrial.ProcTime:=60*5;
& e: \1 S6 ?6 Q) u7 M, J( Z elseif rand>0.8 and rand<=0.95 then " G, @" l5 `- y
Labelpretrial.ProcTime:=60*6;
g8 d5 A3 Q; a- n' }8 S elseif rand>0.95 and rand<=1 then
0 H$ p# M* C6 U! f% U3 h Labelpretrial.ProcTime:=60*7;
9 y5 g& Q6 L! [7 j& f ( G% s) B* N) V8 z2 k$ V: ~
end;' |2 \5 O s4 K/ \) r
end; A, ~2 T' W4 `' X) ? k
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |