pic_debugging_tools.f90 Source File

This file is intended to contain tools that can be useful when debugging large programs, simple printing routines, extracting data from an array etc.


This file depends on

sourcefile~~pic_debugging_tools.f90~~EfferentGraph sourcefile~pic_debugging_tools.f90 pic_debugging_tools.f90 sourcefile~pic_matrix_printer.f90 pic_matrix_printer.f90 sourcefile~pic_debugging_tools.f90->sourcefile~pic_matrix_printer.f90 sourcefile~pic_string_utils.f90 pic_string_utils.f90 sourcefile~pic_debugging_tools.f90->sourcefile~pic_string_utils.f90 sourcefile~pic_matrix_printer.f90->sourcefile~pic_string_utils.f90 sourcefile~pic_types.f90 pic_types.F90 sourcefile~pic_matrix_printer.f90->sourcefile~pic_types.f90 sourcefile~pic_string_utils.f90->sourcefile~pic_types.f90

Source Code

!! This file is intended to contain tools that can be useful when debugging
!! large programs, simple printing routines, extracting data from an array etc.

module pic_debugging_tools
!! simple single include for printing routines
   use pic_matrix_printer, only: print_array, print_array_with_bounds
   use pic_string_utils, only: to_string
   implicit none
   private

contains

end module pic_debugging_tools