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
impure elemental function ESMF_InfoEqual(lhs,rhs)result(is_equal)type(ESMF_Info),intent(in)::lhstype(ESMF_Info),intent(in)::rhslogical::is_equalinteger::localrcinteger(C_INT)::local_is_equallocal_is_equal=0!falsecall c_info_is_equal(lhs%ptr,rhs%ptr,local_is_equal,localrc)if(ESMF_LogFoundError(localrc,ESMF_ERR_PASSTHRU,ESMF_CONTEXT))returnis_equal=.false.if(local_is_equal==1)is_equal=.true.end function ESMF_InfoEqual