我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
. V2 C# p, ?3 tis
+ t8 W0 H5 v1 O8 e* `& s- {1 j rand:real;
8 c5 A6 I! Y, i' t4 Ddo
% F7 [1 Z I3 D; E; Q- \2 j @.serverTime:=Labelpretrial.ProcTime;# y- i" }3 q8 e5 I2 K) [
rand:=Z_uniform(1,0,1);
, ~7 B1 e: `. p/ x# l0 W2 B if rand>0.0 and rand<=0.15 then
6 v) Z7 E3 R9 N2 Y0 X! X8 U Labelpretrial.ProcTime:=60*3;
P; s6 \3 l+ n6 f elseif rand>0.15 and rand<=0.5 then
1 K, ^/ ]0 g# l4 v Labelpretrial.ProcTime:=60*4;, s5 q4 _) i1 a f8 B
elseif rand>0.5 and rand<=0.8 then ) W- k9 r5 K- a) A1 A% x3 Z; s) R
Labelpretrial.ProcTime:=60*5;- ]3 e& [ v7 g, y' [& g
elseif rand>0.8 and rand<=0.95 then
- w5 M& Y, n0 r8 G7 @. M+ J0 M Labelpretrial.ProcTime:=60*6;
: c& G) s1 O9 k elseif rand>0.95 and rand<=1 then
: e- |8 f* z0 S/ K Labelpretrial.ProcTime:=60*7;
1 g; N7 S" ]" k( s
3 A3 Z9 T( m( f" ^ end;
" l2 x( E! I; G6 B+ g) cend;
9 E# P' N) S) B3 O0 w4 K m% B系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |