10     integer, 
allocatable :: imap(:)
 
   11     integer, 
allocatable :: vertex(:,:)
 
 
   20    type(
map_t), 
intent(inout) :: m
 
   21    type(
mesh_t), 
intent(in) :: msh
 
 
   33    type(
map_t), 
intent(inout) :: m
 
   34    integer, 
intent(in) :: nel
 
   35    integer, 
intent(in) :: nlv
 
 
   47    type(
map_t), 
intent(inout) :: m
 
   49    allocate(m%imap(m%nel))
 
   51    allocate(m%vertex(m%nlv, m%nel))
 
 
   56    type(
map_t), 
intent(inout) :: m
 
   58    if (
allocated(m%imap)) 
then 
   62    if (
allocated(m%vertex)) 
then 
 
subroutine map_init_mesh(m, msh)
 
subroutine map_init_nel_nelv(m, nel, nlv)
 
subroutine map_init_common(m)