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 ESMF_XGridGeomBaseDestroy(gridbase,rc)!! !ARGUMENTS:type(ESMF_XGridGeomBase)::gridbaseinteger,intent(out),optional::rc!! !DESCRIPTION:! Destroys an {\tt ESMF\_GridBase} object. This call does not destroy wrapped! Grid, or other Grid objects.!! The arguments are:! \begin{description}! \item[gridbase]! {\tt ESMF\_XGridGeomBase} to be destroyed.! \item[{[rc]}]! Return code; equals {\tt ESMF\_SUCCESS} if there are no errors.! \end{description}!!EOPI! Initialize return code; assume failure until success is certainif(present(rc))rc=ESMF_RC_NOT_IMPL! Check init status of argumentsESMF_INIT_CHECK_DEEP(ESMF_XGridGeomBaseGetInit,gridbase,rc)! do _not_ deallocate/nullify GeomBase memory here because ESMF! garbage collection will handle cleaning up GeomBase allocations! Set init codeESMF_INIT_SET_DELETED(gridbase)! Return successfullyif(present(rc))rc=ESMF_SUCCESSend subroutine ESMF_XGridGeomBaseDestroy