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 make_ungriddedDims(info,key,rc)result(ungridded_dims)type(UngriddedDims)::ungridded_dimstype(ESMF_Info),intent(in)::infocharacter(*),optional,intent(in)::keyinteger,optional,intent(out)::rcinteger::statusinteger::num_ungridded_dimsinteger::itype(ESMF_Info)::dim_infocharacter(:),allocatable::dim_keytype(UngriddedDim),allocatable::dim_specs(:)character(:),allocatable::full_keyungridded_dims=UngriddedDims()full_key=KEY_NUM_UNGRIDDED_DIMSif(present(key))thenfull_key=key//full_keyend if call MAPL_InfoGet(info,key=full_key,value=num_ungridded_dims,_RC)allocate(dim_specs(num_ungridded_dims))do i=1,num_ungridded_dimsdim_key=make_dim_key(i,_RC)if(present(key))thendim_key=key//dim_keyend ifdim_info=ESMF_InfoCreate(info,key=dim_key,_RC)dim_specs(i)=make_ungriddedDim(dim_info,_RC)call ESMF_InfoDestroy(dim_info,_RC)end doungridded_dims=UngriddedDims(dim_specs)_RETURN(_SUCCESS)end function make_ungriddedDims