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