我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。# e( o1 F6 k- t( a% {
is
: {# l3 F/ j- V/ g4 ]2 F: y rand:real;% [0 c6 l5 A+ H2 f
do
! Q! ]) {3 S" x" _% s2 y, ? @.serverTime:=Labelpretrial.ProcTime;
; s, \, |3 E" I rand:=Z_uniform(1,0,1);) j" L- s' }; N" b7 i' u; |2 F$ a/ D
if rand>0.0 and rand<=0.15 then
2 G/ ~& @7 h9 u! A% `( u: t Labelpretrial.ProcTime:=60*3;. l) Z U. D# f$ H& {# T
elseif rand>0.15 and rand<=0.5 then
3 L6 d4 }/ C: T* f; Q% S' d Labelpretrial.ProcTime:=60*4; O$ o& |. j: Y( h
elseif rand>0.5 and rand<=0.8 then 4 f( J/ ]# [# a5 Z
Labelpretrial.ProcTime:=60*5;$ v+ @" y* i0 Z- s! _
elseif rand>0.8 and rand<=0.95 then
) B5 [7 B, T* u% R# y! K N9 z1 m Labelpretrial.ProcTime:=60*6;
+ h. i: G# U* S+ Z$ g. l elseif rand>0.95 and rand<=1 then
8 v1 h4 _; Y, w( {9 n8 Z) Z4 { V Labelpretrial.ProcTime:=60*7;
1 h l6 B& X/ q6 ^
% i/ x, U. t2 T/ X. u7 M: W) U end;& B! U8 z5 N9 N4 N
end;
; @4 f: }/ p. q/ }- q- P系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |