Nodes of different colours represent the following:
Solid arrows point from a submodule to the (sub)module which it is
descended from. Dashed arrows point from a module or program unit to
modules which it uses.
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 MAPL_MethodAdd(state,label,userRoutine,rc)use mapl_ESMF_Interfacesuse mapl_CallbackMapuse mapl_OpenMP_Support,only:get_callbackstype(ESMF_State),intent(inout)::statecharacter(*),intent(in)::labelprocedure(I_CallBackMethod)::userRoutineinteger,optional,intent(out)::rcinteger::statustype(CallbackMap),pointer::callbackscall ESMF_MethodAdd(state,label=label,userRoutine=userRoutine,_RC)call get_callbacks(state,callbacks,_RC)call callbacks%insert(label,wrap(userRoutine))_RETURN(ESMF_SUCCESS)contains function wrap(userRoutine)result(wrapper)type(CallbackMethodWrapper)::wrapperprocedure(I_CallBackMethod)::userRoutinewrapper%userRoutine=>userRoutineend function wrapend subroutine MAPL_MethodAdd