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.
Source Code
subroutine sll_s_assertion(msg,file,line)character(len=*),intent(in)::msgcharacter(len=*),intent(in)::fileinteger,intent(in)::linewrite(*,*)write(*,'(a)')"ASSERTION FAILURE: condition ( "//trim(msg)//" ) is not satisfied."write(*,'(a,i0)')'Triggered at '//file//':',linecall c_abort()end subroutine sll_s_assertion