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 get_mrsf_transitions(trans,noca,nocb,nbf)implicit noneinteger,intent(out),dimension(:,:)::transinteger,intent(in)::noca,nocb,nbfinteger::ij,i,j,lr1,lr2lr1=nocb+1lr2=nocaij=0do j=lr1,nbfdo i=1,lr2ij=ij+1trans(ij,1)=itrans(ij,2)=jend do end do end subroutine get_mrsf_transitions