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 get_factory(this,grid,unusable,rc)result(factory)class(AbstractGridFactory),pointer::factoryclass(GridManager),target,intent(in)::thistype(ESMF_Grid),intent(in)::gridclass(KeywordEnforcer),optional,intent(in)::unusableinteger,optional,intent(out)::rcinteger(kind=ESMF_KIND_I8)::idinteger::statuscharacter(len=*),parameter::Iam=MOD_NAME//'get_factory'_UNUSED_DUMMY(unusable)call ESMF_AttributeGet(grid,factory_id_attribute,id,rc=status)_VERIFY(status)factory=>this%factories%at(id)_RETURN(_SUCCESS)end function get_factory