我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
" W( K/ i7 n6 `, |* p, pis
; `& w( T" S0 z6 l0 R1 {+ O rand:real;& {, x8 `2 X- N) m
do
2 e& P9 {) k$ a( ^ @.serverTime:=Labelpretrial.ProcTime; T9 ^6 _4 s2 C5 I9 @' ^
rand:=Z_uniform(1,0,1);
- z0 s3 F/ X, X6 v! R if rand>0.0 and rand<=0.15 then
3 K: L H; k! }+ a! B Labelpretrial.ProcTime:=60*3;0 {* t+ \6 V5 X0 A+ ?
elseif rand>0.15 and rand<=0.5 then " W- L) T/ R& }6 Y
Labelpretrial.ProcTime:=60*4;
6 e0 ]% u! J% b9 G elseif rand>0.5 and rand<=0.8 then
5 j x' ]6 f2 h$ l5 r4 B Labelpretrial.ProcTime:=60*5;1 G8 H' B+ z; i( D L$ J% I3 `& `, w
elseif rand>0.8 and rand<=0.95 then
* r, ~ A6 i( k+ r Labelpretrial.ProcTime:=60*6;6 K8 q7 E) o6 {- [* o9 L+ z( a
elseif rand>0.95 and rand<=1 then
3 I/ S' z) l8 M6 s: ^+ \$ B Labelpretrial.ProcTime:=60*7;
" F; ?( e6 I0 F" m3 H5 s
$ m0 r7 R5 w# A, d7 } end;& r' i- h2 E$ m4 S
end;
$ P6 v" h c) k# O( D" Q系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |