我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
! H2 a0 O& ] b! l4 z! {7 J. |is- l0 ]; G+ p6 V1 x* ~
rand:real;
7 F0 M! E# F+ S2 o# p( b. tdo
4 `$ q1 G5 b" k6 k+ P @.serverTime:=Labelpretrial.ProcTime;
1 U" b7 |* i( }6 p( C# m* B6 r rand:=Z_uniform(1,0,1);
$ j' u6 Z9 y' ` Q2 G if rand>0.0 and rand<=0.15 then
3 _' K$ k, l8 q' o6 v/ t, i Labelpretrial.ProcTime:=60*3;, O6 y0 w( E. |' f0 D
elseif rand>0.15 and rand<=0.5 then 1 R3 T: Q# Q, O5 A1 k% S
Labelpretrial.ProcTime:=60*4;6 p4 \, }: M L; q5 N" B5 G! W
elseif rand>0.5 and rand<=0.8 then - Y6 H0 r. g2 y3 n" k) [1 Y- D
Labelpretrial.ProcTime:=60*5;
. j% i, k# W" y$ T% L elseif rand>0.8 and rand<=0.95 then a5 M- @2 I2 Q0 i/ S
Labelpretrial.ProcTime:=60*6;
" u0 N3 G& n* P3 }7 R$ g# | elseif rand>0.95 and rand<=1 then
1 M( ~/ }% t4 z# y) b Labelpretrial.ProcTime:=60*7;
- F! ?1 Y( D: l7 k* K
% E- P5 R7 k3 Y, E! j/ t end;
2 T7 I/ A$ C- X! {1 x% s* A2 h) ?# S/ Oend;
9 {, F) _ a7 q/ g0 t- o0 F系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |