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
::
length
Source Code
pure subroutine create_monomer_list(monomers)!! Generate a list of monomer indices from 1 to Ninteger(default_int),allocatable,intent(inout)::monomers(:)integer(default_int)::i,lengthlength=size(monomers,1)do i=1,lengthmonomers(i)=iend do end subroutine create_monomer_list