我要怎么样操作才能让singleproc根据我设置的method语句来操作?我把singleproc中时间选项里面的处理时间改成0,然后应用,系统就会按照我设置的method中的语句的第一句话的时间来操作。我在method中设置的语句是这样的。$ M+ s1 ~: C# C8 R3 p( X/ ?7 l& {
is' W" N+ A( p: H8 b. }9 l! F
rand:real;( g! F" w; z4 X2 G
do9 N8 X! _8 h$ H2 T+ G
@.serverTime:=Labelpretrial.ProcTime;
! C# z- \3 s* Z rand:=Z_uniform(1,0,1);
+ X: @3 |* d1 C8 }6 ~; s if rand>0.0 and rand<=0.15 then
6 x3 k) W L; Q: C5 y+ f Labelpretrial.ProcTime:=60*3;4 _$ L, A8 m D. E* }' f% ?
elseif rand>0.15 and rand<=0.5 then + e5 L" p; f. U1 S
Labelpretrial.ProcTime:=60*4;8 [. ]* h- N4 l
elseif rand>0.5 and rand<=0.8 then
$ ?% _3 F+ ]) ]# J Labelpretrial.ProcTime:=60*5;
6 T& M- `0 a9 N0 V elseif rand>0.8 and rand<=0.95 then : O. p$ G+ a* D8 I% q; y4 A$ k
Labelpretrial.ProcTime:=60*6;
n4 K; E) I3 z0 w& L1 A! R3 V9 F elseif rand>0.95 and rand<=1 then " p1 B7 y( K0 _1 _6 b
Labelpretrial.ProcTime:=60*7;
# x: a1 B5 p$ U' C9 M1 d* X 4 J, W- P3 M: v; k8 `
end;
9 x' f. v' v$ {( Y7 _end;
, c8 F9 _. x& _- m9 m% b# l; C系统就会按照第一个时间3分钟来自动生成处理时间,我该怎么办? |