我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。1 L6 C) J5 Z6 n2 {/ D
is
3 B, G% @3 E, r9 m; T5 I rand:real;! T0 Y. b7 h! }1 C( A
do
; i/ b: P, q; u$ |$ L4 e! d @.serverTime:=Labelpretrial.ProcTime;
* ~; I) g6 W& F- E* ~. _- C) l; @ rand:=Z_uniform(1,0,1);3 ]; ~7 g: W6 u+ c
if rand>0.0 and rand<=0.15 then + \: W/ d* \1 I, R- {+ R* q
Labelpretrial.ProcTime:=60*3;+ H% T0 c4 z' L" C
elseif rand>0.15 and rand<=0.5 then
) C& J1 ~3 a1 s! O1 u: U, ~/ q- Q Labelpretrial.ProcTime:=60*4;
# L& E4 }" }8 F# h& n elseif rand>0.5 and rand<=0.8 then
) v L* X. C3 D, i/ K! Q# V Labelpretrial.ProcTime:=60*5;& H2 c/ U: @; G+ d1 D' b; ]
elseif rand>0.8 and rand<=0.95 then
0 U& z; t m' j Labelpretrial.ProcTime:=60*6;) X5 {. `4 M2 z( H! w
elseif rand>0.95 and rand<=1 then
4 v7 u F, Z V5 B# L) F Labelpretrial.ProcTime:=60*7;
5 s/ L6 b( Z3 e1 _5 |
+ }1 k! i3 O& D: ?6 d' w' c end;: x# ^& J8 m% {$ R
end;9 N" a5 M2 c3 b( ^
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |