我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。1 g# ^1 i0 t. p2 j4 p
is
5 {' d3 }( {+ c9 \, W, K- f rand:real;* U; F7 U! l1 R" G5 Y
do$ Z) g0 k2 b K% F" G6 d8 c X( k, H
@.serverTime:=Labelpretrial.ProcTime;; I1 g$ ^8 h2 U* |
rand:=Z_uniform(1,0,1);
) \/ L7 n$ v7 C if rand>0.0 and rand<=0.15 then 9 E9 j1 G. U7 s% W% ~1 }( F
Labelpretrial.ProcTime:=60*3;" F( j* U! a$ v8 I, @; A
elseif rand>0.15 and rand<=0.5 then
* o; f: Z; P L9 c3 z2 ]- [ u- R Labelpretrial.ProcTime:=60*4;. e9 }0 k5 s4 G! h- W! G
elseif rand>0.5 and rand<=0.8 then
7 _/ B1 w1 u$ M( h# K6 u' J Labelpretrial.ProcTime:=60*5;6 k3 O6 V; f: u
elseif rand>0.8 and rand<=0.95 then / H4 d, B. r! ^6 A* f
Labelpretrial.ProcTime:=60*6;
4 x1 D# \/ [, q3 E elseif rand>0.95 and rand<=1 then
' f: A8 X$ _5 e# W4 k. Y" U( K5 s Labelpretrial.ProcTime:=60*7;: F0 F3 C' Z4 [6 ]2 Z. ?+ E
8 ?) R. Q3 r; U* r' L& V9 j end;
9 \ ?; a2 e( l7 m7 d% P% z6 G( Qend;4 M) q; Z$ Z( g/ u8 I" G
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |