我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。
: o: X. l d& g; ^is; G3 M, Y, t+ S+ E$ \; b$ C
rand:real;
Y3 ], |& A1 Qdo
+ D& l ]7 B5 C( u3 E3 p @.serverTime:=Labelpretrial.ProcTime;
! a+ C. U" `& `0 f9 S% e rand:=Z_uniform(1,0,1); u' b! d7 t$ W
if rand>0.0 and rand<=0.15 then 4 ?! e) o% s# i/ H: |6 P; x
Labelpretrial.ProcTime:=60*3;0 m/ m. L: I% t& O
elseif rand>0.15 and rand<=0.5 then
, i0 W5 l" h2 O Labelpretrial.ProcTime:=60*4;! r3 W, w7 B& F
elseif rand>0.5 and rand<=0.8 then
, |2 [1 l# X/ M( x( y; j8 _ Labelpretrial.ProcTime:=60*5;1 l5 C) l' I) Z5 V- y/ ]
elseif rand>0.8 and rand<=0.95 then
2 ]: V9 w* E) d2 f Labelpretrial.ProcTime:=60*6;
_! ]4 @( U! D, F2 A) T8 G* Z) j5 \ elseif rand>0.95 and rand<=1 then 1 F9 ?5 b1 k) H# s: `
Labelpretrial.ProcTime:=60*7;
- L& L' t, K4 E: p8 i2 e* a" Y; p
; k) E, n' n P) c( X/ ` end;
- O( v- s# T* R0 b8 n z$ Send;* U$ T; R! E: r: M5 B5 V6 g) [0 H
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |