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_itemtype(state,short_name,rc)result(itemtype)type(ESMF_StateItem_Flag)::itemtypetype(ESMF_State)::statecharacter(*),intent(in)::short_nameinteger,intent(out)::rcinteger::statusinteger::idxtype(ESMF_State)::substate,tmp_statecharacter(:),allocatable::nameinteger::itemcountrc=0name=short_namesubstate=statedoidx=index(name,'/')if(idx==0)then call ESMF_StateGet(substate,name,itemtype=itemtype,_RC)return end if call ESMF_StateGet(substate,name(:idx-1),tmp_state,rc=status)@assert_that(short_name,status,is(0))name=name(idx+1:)substate=tmp_stateend dorc=0end function get_itemtype