Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Variables
Type
Visibility
Attributes
Name
Initial
character(len=20),
private
::
print_format
Source Code
subroutine print_matrix_int64(matrix,format_type)!! print a matrix of int64 valuesinteger(int64),intent(in)::matrix(:,:)character(len=*),intent(in),optional::format_typecharacter(len=20)::print_formatif(present(format_type))thenprint_format=format_typeelseprint_format=default_formatend if print:blockcharacter(len=1)::open_bracket,close_bracketinteger(int32)::i,j,rows,colsrows=size(matrix,1)cols=size(matrix,2)call set_brackets(print_format,open_bracket,close_bracket)print*,open_bracketdo i=1,rowswrite(*,"(A)",advance="no")open_bracketdo j=1,colsif(j==cols)then! Last element in the rowwrite(*,fmt_edge,advance="no")to_string(matrix(i,j))else! Elements in betweenwrite(*,fmt_in,advance="no")to_string(matrix(i,j))end if end do if(i==rows)then print*,close_bracketelse print*,close_bracket,","end if end do print*,close_bracketend block print end subroutine print_matrix_int64