我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。$ t" w2 h1 i' p; d: c: E
is2 [6 u0 O d5 j1 I
rand:real;1 ^+ w! [4 p+ e8 x
do
' K2 t0 A' G5 F" J3 w/ h T @.serverTime:=Labelpretrial.ProcTime;
$ [2 S: b7 c; g# J2 O; J rand:=Z_uniform(1,0,1);
2 ^; J$ X2 m s, U if rand>0.0 and rand<=0.15 then 5 E9 D9 B/ ?/ `5 V
Labelpretrial.ProcTime:=60*3;0 B% M: p% }% @- ?% e+ Z
elseif rand>0.15 and rand<=0.5 then
$ C. Y, D _% V. T) o& \ Labelpretrial.ProcTime:=60*4;
( a, d: w- p, ]0 I A elseif rand>0.5 and rand<=0.8 then
* v; T) e) ]8 a3 S p. u Labelpretrial.ProcTime:=60*5;
4 [5 y6 F5 \8 Q5 h* q5 V; m5 ?5 a6 j3 W! b elseif rand>0.8 and rand<=0.95 then * R6 |7 ~3 ?$ [/ c5 e, G
Labelpretrial.ProcTime:=60*6;9 ^1 t4 j0 H2 Q2 _- [2 ~
elseif rand>0.95 and rand<=1 then
7 B5 s9 t: y3 R8 Q( B Labelpretrial.ProcTime:=60*7;
$ r# g' `* w3 T- w; U ; m8 Q$ c/ v! ~5 ]5 a `0 R
end;- N5 p! P: C2 v+ Z
end;
: V% ^( q9 `! C系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |