我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。1 _$ q) V* T8 |2 Y6 s0 H! i, `
is5 U$ i+ a( m7 Y* f2 N3 y
rand:real;# i/ B, @2 u. g$ V8 @5 c' H
do* z& v! y+ x) H+ G1 T# N0 n
@.serverTime:=Labelpretrial.ProcTime;% |5 P: n) `, V6 Z2 {, s, n+ M
rand:=Z_uniform(1,0,1);: k2 X6 g0 t* c1 _
if rand>0.0 and rand<=0.15 then 7 }+ W! o Z3 B( N1 h: ^# z2 ]* @
Labelpretrial.ProcTime:=60*3;9 U' P5 Q+ D) K0 R' q# S- ]- b
elseif rand>0.15 and rand<=0.5 then
; D- h: x& W" R0 y5 g) } Labelpretrial.ProcTime:=60*4;! A! w8 U4 q* I; k; D, f2 B' }
elseif rand>0.5 and rand<=0.8 then
7 r2 i i- L- B" s* ]$ _/ E Labelpretrial.ProcTime:=60*5;
' n+ F; \/ D+ L1 e9 k elseif rand>0.8 and rand<=0.95 then & Q) a1 q/ |7 o7 J
Labelpretrial.ProcTime:=60*6;
1 r N/ e) a( l/ b elseif rand>0.95 and rand<=1 then ( ~2 t+ O6 n2 c
Labelpretrial.ProcTime:=60*7;& N" N# h/ Q4 P- P+ w! S& d
/ Q0 N( M. i& n |4 H4 d) }
end;
4 H, h0 \+ R! _) Z' r1 Hend;
0 E: q( A$ T- u7 a系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |