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
logical function check_value(exp_val,act_val,tol)real(ESMF_KIND_R8),intent(in)::exp_valreal(ESMF_KIND_R8),intent(in)::act_valreal(ESMF_KIND_R8),intent(in)::tolreal(ESMF_KIND_R8)::abs_errreal(ESMF_KIND_R8)::tol_bandabs_err=abs(act_val-exp_val)tol_band=abs(tol*exp_val)+RegridMinNeighborhoodcheck_value=abs_err.LT.tol_band#if 1! print error message if value rejected because its outside of the minimum tolerance bandif(.NOT.check_value)then if(abs_err.GE.RegridMinNeighborhood)then call ESMF_LogSetError(ESMF_FAILURE,msg="regrid error - value outside of minimum tolerance band",&line=__LINE__,file=__FILE__)end if end if#endif! debug#if 0if(.NOT.check_value)then print*,"check_value - value out of tolerance(debug)",exp_val,act_val,abs_err,tol_bandendif#endifreturn!-----------------------------------------------------------------------------end function check_value