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 arrays_equal_internal(a,b,n)result(equal)!! Check if two arrays are equalinteger,intent(in)::a(:),b(:),nlogical::equalinteger::iequal=.true.if(size(a)/=n.or.size(b)/=n)thenequal=.false.return end if do i=1,nif(a(i)/=b(i))thenequal=.false.return end if end do end function arrays_equal_internal