c_debug_print Subroutine

private subroutine c_debug_print(self)

Debug printing

Type Bound

cell_type

Arguments

Type IntentOptional Attributes Name
class(cell_type), intent(in) :: self

Contents

Source Code


Source Code

  subroutine c_debug_print(self)
    implicit none
    class(cell_type), intent(in) :: self
    write(dlun,'("Cell debug print. Index ic=",I0," nrow=",I0," ncol=",I0)') &
         self%ic_ind, self%nrow, self%ncol
  end subroutine c_debug_print