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.
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.
FUNCTION get_diag_rv(mat)REAL(SP),DIMENSION(:,:),INTENT(IN)::matREAL(SP),DIMENSION(size(mat,1))::get_diag_rvINTEGER(I4B)::jj=assert_eq2(size(mat,1),size(mat,2),'get_diag_rv')do j=1,size(mat,1)get_diag_rv(j)=mat(j,j)end do END FUNCTION get_diag_rv