2D AMRCLAW
init_iflags.f
Go to the documentation of this file.
1 c
2 c --------------------------------------------------------------------------
3 c
4  subroutine init_iflags(iflags,isize,jsize)
5 c
6 c # Need this routine to initialize since iflags is part of double
7 c # precision alloc array but is used as an integer(kind=1) to save storage.
8 
9  implicit double precision (a-h,o-z)
10 
11  integer(kind=1) iflags (0:isize+1,0:jsize+1)
12 
13  do j = 1, jsize
14  do i = 1, isize
15  iflags(i,j) = 0
16  enddo
17  enddo
18 
19  return
20  end
subroutine init_iflags(iflags, isize, jsize)
Definition: init_iflags.f:5