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.
Source Code
integer function MAPL_HashDump(Hash,i,j)integer,intent(IN)::Hashinteger,intent(OUT)::i(:)integer,optional,intent(OUT)::j(:)integer,allocatable::jj(:)integer::rcMAPL_HashDump=MAPL_HashSize(HASH)if(size(i)<MAPL_HashSize(HASH))thenMAPL_HashDump=-1return end if if(present(j))then_ASSERT(size(i)==size(j),'needs informative message')call DUMPHASH(HASH,I,J)else allocate(jj(size(i)))call DUMPHASH(HASH,I,JJ)deallocate(JJ)end ifend function MAPL_HashDump