#include "implicit_f.inc"
Go to the source code of this file.
|
| subroutine | w_inloc (itab, nodglob, numnod_l, len_ia) |
◆ w_inloc()
| subroutine w_inloc |
( |
integer, dimension(*) | itab, |
|
|
integer, dimension(*) | nodglob, |
|
|
integer | numnod_l, |
|
|
integer | len_ia ) |
Definition at line 30 of file w_inloc.F.
31
32
33
34#include "implicit_f.inc"
35
36
37
38 INTEGER ITAB(*), NODGLOB(*), NUMNOD_L, LEN_IA
39
40
41
42 INTEGER I
43 INTEGER, DIMENSION(:), ALLOCATABLE :: ITMP
44
45
46
47 ALLOCATE( itmp(numnod_l) )
48
49 DO i = 1, numnod_l
50 itmp(i) = itab(nodglob(i))
51 ENDDO
52
54 len_ia = len_ia + numnod_l
55
56
57
58 DEALLOCATE( itmp )
59
60 RETURN
void write_i_c(int *w, int *len)