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
Source Code
pure function atom_sets_equal(set1,set2,n_atoms)result(equal)!! Check if two atom sets are equal (assuming sorted)integer,intent(in)::set1(:),set2(:)integer,intent(in)::n_atomslogical::equalinteger::iequal=.true.do i=1,n_atomsif(set1(i)/=set2(i))thenequal=.false.return end if end do end function atom_sets_equal