我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
- R$ S- G4 R M7 i7 h6 g- cis
$ Q, U( c! V0 [6 O2 `4 C2 N rand:real; _' s( y- f [. T p! `
do% \: x$ |6 B' g* l
@.serverTime:=Labelpretrial.ProcTime;: u$ T: p" ]! G, d) r* G
rand:=Z_uniform(1,0,1);
) _2 ^* }. P c s5 | if rand>0.0 and rand<=0.15 then
/ Y$ g1 d8 T% `& z: ?' @ Labelpretrial.ProcTime:=60*3;
# K% R) C- Z: u elseif rand>0.15 and rand<=0.5 then 3 { f, Z* w; x, u0 T/ i/ q
Labelpretrial.ProcTime:=60*4;6 Z. L# M- @ O3 }
elseif rand>0.5 and rand<=0.8 then : R j4 |. b0 Z0 E
Labelpretrial.ProcTime:=60*5;
8 H. }( U$ O ? elseif rand>0.8 and rand<=0.95 then
+ }( x. c. Z, W7 K. ^. N* p( T Labelpretrial.ProcTime:=60*6;
5 ~1 q7 T% {, Z* f elseif rand>0.95 and rand<=1 then
: @) s* _3 E# F1 n, }" ` Labelpretrial.ProcTime:=60*7;
9 Q, {. w7 m- p* Q! @4 U& n% o& n ) @' @1 O' d0 X2 m' f. k4 S
end;
2 |* U- @/ }4 C$ P- S- I; Q* tend;$ w$ y o, j( |, W" b# p. ^3 V
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |