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
function mk_field_common(tk,name,ungriddedLBound,ungriddedUBound,rc)result(field)type(ESMF_TypeKind_Flag),intent(in)::tkcharacter(len=*),intent(in)::nameinteger,optional,intent(in)::ungriddedLBound(:)integer,optional,intent(in)::ungriddedUBound(:)integer,optional,intent(out)::rccharacter(len=*),parameter::GRID_SUFFIX='_grid'character(len=*),parameter::FIELD_SUFFIX='_field'type(ESMF_Field)::fieldtype(ESMF_Grid)::gridinteger::statusgrid=mk_grid(grid_name=name//GRID_SUFFIX,_RC)field=ESMF_FieldCreate(grid,typekind=tk,name=name//FIELD_SUFFIX,ungriddedLBound=ungriddedLBound,ungriddedUBound=ungriddedUBound,_RC)_RETURN(_SUCCESS)end function mk_field_common