#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | i7dstk (nb_nc, nb_ec, add, bpn, pn, bpe, pe) |
◆ i7dstk()
| subroutine i7dstk |
( |
integer | nb_nc, |
|
|
integer | nb_ec, |
|
|
integer, dimension(2,0:*) | add, |
|
|
integer, dimension(*) | bpn, |
|
|
integer, dimension(*) | pn, |
|
|
integer, dimension(*) | bpe, |
|
|
integer, dimension(*) | pe ) |
Definition at line 33 of file i7dstk.F.
34
35
36
37
38
39
40
41
42
43
44#include "implicit_f.inc"
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70 INTEGER NB_NC,NB_EC
71 INTEGER ADD(2,0:*),BPE(*),PE(*),BPN(*),PN(*)
72
73
74
75 INTEGER I
76
77
78
79
80 nb_nc = add(1,1) - add(1,0)
81 DO 10 i=1,nb_nc
82 bpn(i) = pn(add(1,0)+i)
83 10 CONTINUE
84
85
86
87 nb_ec = add(2,1) - add(2,0)
88 DO 20 i=1,nb_ec
89 bpe(i) = pe(add(2,0)+i)
90 20 CONTINUE
91 RETURN