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,
private
::
i
integer,
private
::
j
Source Code
pure subroutine intersect_atom_lists(atoms1,n1,atoms2,n2,intersection,n_intersect)!! Compute intersection of two atom listsinteger,intent(in)::atoms1(:),n1,atoms2(:),n2integer,intent(out)::intersection(:)integer,intent(out)::n_intersectinteger::i,jn_intersect=0do i=1,n1if(atoms1(i)<0)cycle do j=1,n2if(atoms2(j)<0)cycle if(atoms1(i)==atoms2(j))thenn_intersect=n_intersect+1intersection(n_intersect)=atoms1(i)exit end if end do end do end subroutine intersect_atom_lists