32
33
34
35 USE intbufdef_mod
36
37
38
39#include "implicit_f.inc"
40
41
42
43#include "com08_c.inc"
44#include "param_c.inc"
45#include "task_c.inc"
46
47
48
49 INTEGER NIN, ITASK, IPARI(NPARI,*)
50
51 TYPE(INTBUF_STRUCT_) INTBUF_TAB
52
53
54
55 INTEGER N, FIRST, LAST,
56 . NSN
57
59 . startt, stopt, tol
60
61
62
63
64
65
66
67 nsn =ipari(5,nin)
68
69 startt=intbuf_tab%VARIABLES(3)
70 stopt =intbuf_tab%VARIABLES(11)
71 IF(startt>tt) RETURN
72 IF(tt>stopt) RETURN
73
74 first = 1 + nsn*itask / nthread
75 last = nsn*(itask+1) / nthread
76 DO n=first,last
77 intbuf_tab%IRTLM(2*(n-1)+1)=0
78 intbuf_tab%CSTS(2*(n-1)+1) =-one
79 intbuf_tab%CSTS(2*(n-1)+2)=-one
80 END DO
81
82 RETURN