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.
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 test2a_bigarray(rc)integer,intent(out)::rcinteger::localrcreal,dimension(8,28)::farraytype(ESMF_Field)::fieldtype(ESMF_Grid)::gridrc=ESMF_SUCCESSlocalrc=ESMF_SUCCESSgrid=ESMF_GridCreateNoPeriDim(minIndex=(/1,1/),maxIndex=(/16,20/),®Decomp=(/4,1/),name="testgrid",rc=localrc)if(ESMF_LogFoundError(localrc,&ESMF_ERR_PASSTHRU,&ESMF_CONTEXT,rcToReturn=rc))returnfield=ESMF_FieldCreate(grid,farray,indexflag=ESMF_INDEX_DELOCAL,&datacopyflag=ESMF_DATACOPY_VALUE,&staggerloc=ESMF_STAGGERLOC_CENTER,&rc=localrc)if(ESMF_LogFoundError(localrc,&ESMF_ERR_PASSTHRU,&ESMF_CONTEXT,rcToReturn=rc))return call ESMF_FieldDestroy(field,rc=localrc)if(ESMF_LogFoundError(localrc,&ESMF_ERR_PASSTHRU,&ESMF_CONTEXT,rcToReturn=rc))return call ESMF_GridDestroy(grid,rc=localrc)if(ESMF_LogFoundError(localrc,&ESMF_ERR_PASSTHRU,&ESMF_CONTEXT,rcToReturn=rc))return end subroutine test2a_bigarray