我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
/ v, I9 }! n+ p5 C- G6 dis3 R: L) p8 X5 W# v$ Q* ~6 w% m
rand:real;
2 {0 m1 u+ H/ @: m6 i, L: Wdo+ e7 m" [' }+ d2 h
@.serverTime:=Labelpretrial.ProcTime;$ y4 F; d3 B0 j( P8 ]0 {4 D2 V
rand:=Z_uniform(1,0,1);5 Z1 s X5 L0 ?5 r" |: U; l
if rand>0.0 and rand<=0.15 then & V# m9 H4 H, R$ w, a
Labelpretrial.ProcTime:=60*3;
6 u4 {* V7 I, `; c elseif rand>0.15 and rand<=0.5 then % p6 l, Z3 R, Y+ G3 A* X
Labelpretrial.ProcTime:=60*4;
0 Z* w( Z! @4 L% j& D2 P% Y1 d! U elseif rand>0.5 and rand<=0.8 then
$ T; A8 C2 B& ~( X Labelpretrial.ProcTime:=60*5;
8 V9 M: u0 _. G H, y4 U4 o elseif rand>0.8 and rand<=0.95 then
; {. |1 m' m" E7 f Labelpretrial.ProcTime:=60*6;; a/ Y6 k4 ]* J# p/ j- Z" Q
elseif rand>0.95 and rand<=1 then
9 ^$ j8 t9 x; D. U2 u& O/ a Labelpretrial.ProcTime:=60*7;
, n& K; G% @/ ^
; `: S) v1 S; A$ m5 W' e end;
, p8 O% l% f7 ?: G- Q4 U yend;" N, t1 f% I1 H k& U& b
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |