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
integer(kind=default_int),
private
::
i
integer(kind=default_int),
private
::
loop_bound
Source Code
subroutine print_plain_vector(vec,n_elements)!! private subroutine that prints a vector of n_elementsreal(kind=dp),intent(in)::vec(:)integer(kind=default_int),intent(in),optional::n_elementsinteger(kind=default_int)::i,loop_boundif(present(n_elements))thenloop_bound=n_elementselseloop_bound=size(vec)end if print*,"Vector (Plain format):"do i=1,loop_boundwrite(*,fmt_edge)vec(i)end do end subroutine print_plain_vector