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
subroutine MAPL_Return(status,filename,line,rc)integer,intent(in)::statuscharacter(*),intent(in)::filenameinteger,intent(in)::lineinteger,intent(out),optional::rclogical::condition,failcharacter(:),allocatable::messagecondition=(status==0)fail=.not.conditionif(fail)thenmessage=get_error_message(status)!$omp critical (MAPL_ErrorHandling4)call MAPL_throw_exception(filename,line,message=message)!$omp end critical (MAPL_ErrorHandling4)end if! Regardless of error:if(present(rc))rc=statusend subroutine MAPL_Return