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
subroutine MAPL_LocStreamTileWeight(LocStream,OUTPUT,INPUT,RC)type(MAPL_LocStream),intent(IN)::LocStreamreal,intent(OUT)::OUTPUT(:)real,intent(IN)::INPUT(:,:)integer,optional,intent(OUT)::RC! Local variablesinteger::N! Fill output subject to mask!----------------------------do N=1,size(OUTPUT)OUTPUT(N)=LOCSTREAM%Ptr%LOCAL_INDEXLOCATION(N)%W*&INPUT(LOCSTREAM%Ptr%LOCAL_INDEXLOCATION(N)%I,&LOCSTREAM%Ptr%LOCAL_INDEXLOCATION(N)%J)end do_RETURN(ESMF_SUCCESS)end subroutine MAPL_LocStreamTileWeight