我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
) l" v' W2 Z' T5 K4 A3 `7 P! Dis; p" ^7 S6 ~/ ^. j% w+ M
rand:real;0 H6 S, v/ C {* {% h/ Y
do
; O! }; z3 V3 x1 d @.serverTime:=Labelpretrial.ProcTime;
% w; g# G3 W/ n; w rand:=Z_uniform(1,0,1);) s& z) @4 C3 x; @
if rand>0.0 and rand<=0.15 then ( |7 D, R5 y& |* R7 z0 s5 H0 @
Labelpretrial.ProcTime:=60*3;: O; z1 O8 z9 P [+ I
elseif rand>0.15 and rand<=0.5 then - r2 C! M; O1 ~$ G
Labelpretrial.ProcTime:=60*4;
9 S" t; X5 ^( ]+ u elseif rand>0.5 and rand<=0.8 then 7 ]! ^5 I- C- S# c* B/ i
Labelpretrial.ProcTime:=60*5;2 A, N0 l6 m! Q) g! U
elseif rand>0.8 and rand<=0.95 then " Q: Y7 @/ ~8 Z3 M
Labelpretrial.ProcTime:=60*6;# Y* D/ \5 E3 [6 h
elseif rand>0.95 and rand<=1 then . m+ g% p0 g# y, C* ^, L
Labelpretrial.ProcTime:=60*7;- h8 u" ]8 v0 _ H6 d" U7 h3 [
* z& w/ p% y4 V$ i: w' R end;
2 I: h( W' z/ a0 K7 P P Hend;& u5 k! P; N* s" e# `0 V, ?: v! t0 q! t
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |