我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。( G3 a. j3 O/ v. T$ H
is
" P n: w" K$ ?- N rand:real; e2 x, a# f8 S1 a9 P0 b
do* f U# C6 {+ M5 {
@.serverTime:=Labelpretrial.ProcTime;+ k2 }6 h" X1 @. P: K
rand:=Z_uniform(1,0,1);) E; [. i# \: Z4 |
if rand>0.0 and rand<=0.15 then 0 o9 {6 D7 ], |; ^0 p
Labelpretrial.ProcTime:=60*3;
3 }( @4 X" ^! m+ L4 R. I elseif rand>0.15 and rand<=0.5 then 4 S; |* z+ v8 X+ B" G; H
Labelpretrial.ProcTime:=60*4;
' U0 z5 }! {9 I$ b elseif rand>0.5 and rand<=0.8 then / ]1 t6 r1 P$ g- L2 s
Labelpretrial.ProcTime:=60*5;
' `- D* _( u: Q9 z elseif rand>0.8 and rand<=0.95 then
9 m2 _7 c% |1 O Labelpretrial.ProcTime:=60*6;( O: G6 m) A& l. J
elseif rand>0.95 and rand<=1 then
) s: ?" h- N n1 G Labelpretrial.ProcTime:=60*7;
; C" c& s+ R) \: x. B; e
9 ]: g, ^+ ?- Z3 E2 D4 t end;
: z, n" O/ Z& V! `, Cend;
* T! }3 |7 Q* O9 U" f系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |