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 initialize_field(field,typekind,grid,rc)type(ESMF_Field),intent(inout)::fieldtype(ESMF_TypeKind_Flag),intent(in)::typekindtype(ESMF_Grid),optional,intent(inout)::gridinteger,optional,intent(out)::rctype(ESMF_Grid)::grid_logical::grid_createdinteger::statusgrid_created=.FALSE.if(present(grid))thengrid_created=ESMF_GridIsCreated(grid,_RC)if(grid_created)grid_=gridend if if(.not.grid_created)thengrid_=ESMF_GridCreateNoPeriDimUfrm(maxIndex=MAX_INDEX,&&minCornerCoord=MIN_CORNER_COORD,maxCornerCoord=MAX_CORNER_COORD,_RC)end iffield=ESMF_FieldCreate(grid=grid_,typekind=typekind,_RC)if(present(grid))grid=grid__RETURN(_SUCCESS)end subroutine initialize_field