#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 INTEGER NB_NC,NB_EC
70 INTEGER ADD(2,0:*),BPE(*),PE(*),BPN(*),PN(*)
71
72
73
74 INTEGER I
75
76
77
78
79 nb_nc = add(1,1) - add(1,0)
80 DO 10 i=1,nb_nc
81 bpn(i) = pn(add(1,0)+i)
82 10 CONTINUE
83
84
85
86 nb_ec = add(2,1) - add(2,0)
87 DO 20 i=1,nb_ec
88 bpe(i) = pe(add(2,0)+i)
89 20 CONTINUE
90 RETURN