23 integer,
intent(out) :: status
24 integer,
intent(in) :: new_size
28 write(6,*)
'*** Ran out of storage for AMR. ' 29 write(6,*)
'*** Increase memsize in init_alloc_static.f' 30 write(6,*)
'*** or switch to dynamic memory using init_alloc.f90' 31 write(6,*)
'*** Current memsize = ',
memsize 32 write(6,*)
'*** Requested new_size = ',new_size
subroutine resize_storage(new_size, status)
The module contains the definition of a "node descriptor" as well as other global variables used duri...