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 MAPL_Verify(status,filename,line,rc)result(fail)integer,intent(in)::statuscharacter(*),intent(in)::filenameinteger,intent(in)::lineinteger,optional,intent(out)::rc! Not present in MAINlogical::conditioncharacter(:),allocatable::messagecharacter(16)::status_stringcondition=(status==0)fail=.not.conditionif(fail)then write(status_string,'(i0)')statusmessage='status='//status_string!$omp critical (MAPL_ErrorHandling3)call MAPL_throw_exception(filename,line,message=message)!$omp end critical (MAPL_ErrorHandling3)if(present(rc))rc=statusend if end function MAPL_Verify