我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。% H, x4 H, G- u8 x% e
is
! f4 B) v7 J! Z! O3 e# f rand:real; p) N2 t; j" K+ y
do
+ R7 Y$ n. R( t* x3 @9 h8 w @.serverTime:=Labelpretrial.ProcTime;, d; V0 ]% r& j G
rand:=Z_uniform(1,0,1);; y7 g; M# t" [
if rand>0.0 and rand<=0.15 then 6 N+ ~7 w! t: {% c+ [2 |$ z6 R0 e6 f: u
Labelpretrial.ProcTime:=60*3;' _0 b( @* R6 L8 ]
elseif rand>0.15 and rand<=0.5 then 2 T0 o$ U. f0 |7 S- r F
Labelpretrial.ProcTime:=60*4;
! N+ ?" P; f6 q3 h G elseif rand>0.5 and rand<=0.8 then # w+ v" M6 c! i1 I e8 f
Labelpretrial.ProcTime:=60*5;* a- ~% n" l. M/ o( P9 _
elseif rand>0.8 and rand<=0.95 then ) d r. x5 w! I9 h2 M# x \
Labelpretrial.ProcTime:=60*6;1 F6 [/ L, v. e* j
elseif rand>0.95 and rand<=1 then * I) X1 F$ |- L. D; |- W
Labelpretrial.ProcTime:=60*7;
3 g9 S3 N$ [2 Y* N) I + v8 I D: P& M! r. W. O! x
end;
. [7 B9 |8 h: x8 R- d9 A# ~end;. W1 e8 P: D" \* ^2 N
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |