All Classes Files Functions Variables Pages
mod_init_memory::init_array_int Interface Reference

Interface init_array_int to redirect allocation to n-rank arrays.

Private Member Functions

integer function init_array_rank1_int (t, n1, tname)
 This subroutine allocates integer-value array of rank 1. More...
 
integer function init_array_rank2_int (t, n1, n2, tname)
 This subroutine allocates integer-value array of rank 2. More...
 
integer function init_array_rank3_int (t, n1, n2, n3, tname)
 This subroutine allocates int-value array of rank 3. More...
 
integer function init_array_rank4_int (t, n1, n2, n3, n4, tname)
 This subroutine allocates int-value array of order 4. More...
 

Detailed Description

Definition at line 160 of file module_init_memory.f90.

Member Function/Subroutine Documentation

integer function mod_init_memory::init_array_int::init_array_rank1_int ( integer, dimension(:), intent(out), allocatable  t,
integer, intent(in)  n1,
character(len=*), intent(in)  tname 
)
private
Parameters
t: integer-value array to be allocated
n1: size of the array
tname: name of the array

Definition at line 515 of file module_init_memory.f90.

integer function mod_init_memory::init_array_int::init_array_rank2_int ( integer, dimension(:,:), intent(out), allocatable  t,
integer, intent(in)  n1,
integer, intent(in)  n2,
character(len=*), intent(in)  tname 
)
private
Parameters
t: integer-value array to be allocated
n1: size of dimension 1 of the array
n2: size of dimension 2 of the array
tname: name of the array

Definition at line 556 of file module_init_memory.f90.

integer function mod_init_memory::init_array_int::init_array_rank3_int ( integer, dimension(:,:,:), intent(out), allocatable  t,
integer, intent(in)  n1,
integer, intent(in)  n2,
integer, intent(in)  n3,
character(len=*), intent(in)  tname 
)
private
Parameters
t: int-value array to be allocated –> t(n3,n2,n1)
n1: size of the dimension 1 of the array
n2: size of the dimension 2 of the array
n3: size of the dimension 3 of the array
tname: name of the array

Definition at line 602 of file module_init_memory.f90.

integer function mod_init_memory::init_array_int::init_array_rank4_int ( integer, dimension(:,:,:,:), intent(out), allocatable  t,
integer, intent(in)  n1,
integer, intent(in)  n2,
integer, intent(in)  n3,
integer, intent(in)  n4,
character(len=*), intent(in)  tname 
)
private
Parameters
t: int-value array to be allocated
n1: size of the dimension 1 of the array
n2: size of the dimension 2 of the array
n3: size of the dimension 3 of the array
n4: size of the dimension 4 of the array
tname: name of the array

Definition at line 653 of file module_init_memory.f90.


The documentation for this interface was generated from the following file: