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 test_uninit_array(rc)integer,intent(out)::rctype(ESMF_Array)::array type(ESMF_Field)::fieldtype(ESMF_DistGrid)::distgridtype(ESMF_Grid)::gridinteger::localrcrc=ESMF_SUCCESSlocalrc=ESMF_SUCCESSdistgrid=ESMF_DistGridCreate(minIndex=(/1,1/),maxIndex=(/10,10/),rc=localrc)if(ESMF_LogFoundError(localrc,&ESMF_ERR_PASSTHRU,&ESMF_CONTEXT,rcToReturn=rc))returngrid=ESMF_GridCreate(distgrid=distgrid,rc=localrc)if(ESMF_LogFoundError(localrc,&ESMF_ERR_PASSTHRU,&ESMF_CONTEXT,rcToReturn=rc))returnfield=ESMF_FieldCreate(grid,array,datacopyflag=ESMF_DATACOPY_VALUE,rc=localrc)if(ESMF_LogFoundError(localrc,&ESMF_ERR_PASSTHRU,&ESMF_CONTEXT,rcToReturn=rc))return end subroutine test_uninit_array