我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。$ M6 J5 o( L4 o3 t
is+ P6 @+ w- m# q2 S5 o0 W
rand:real;, y& a2 t) I3 |/ e8 J4 k
do n# ? I, X" _$ U4 o4 j# t
@.serverTime:=Labelpretrial.ProcTime;5 E& j# f4 `% j0 |
rand:=Z_uniform(1,0,1);
7 y7 |& |; L8 k3 l! f4 d$ B if rand>0.0 and rand<=0.15 then
P0 W9 L; O0 l Labelpretrial.ProcTime:=60*3;( ]0 @, o* n* F
elseif rand>0.15 and rand<=0.5 then
7 w# |5 u) G9 R* V, h) B& b; } Labelpretrial.ProcTime:=60*4;
/ s5 v' T$ ~0 V1 ~" C elseif rand>0.5 and rand<=0.8 then 3 |/ t" Z1 Z" Z! g) `
Labelpretrial.ProcTime:=60*5;
; O0 R+ ?) [& Q( g2 R& ?% }/ L, V! f elseif rand>0.8 and rand<=0.95 then
8 e9 W) d! A' g# a* K0 y& E9 w Labelpretrial.ProcTime:=60*6;2 ]0 m3 G1 s' _/ k. g% V; W, _
elseif rand>0.95 and rand<=1 then
: l" [; A+ U% R- a4 b Labelpretrial.ProcTime:=60*7;4 b% l: t! {4 Y; u! J/ \) f
$ v+ i6 p+ ? A& E: v8 j end;
& ]4 Y. \9 _; W/ Y& Qend;. x% ]( @3 K1 H7 y4 B4 ?' C1 w( P
系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |