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
impure subroutine compute_score(this)#elsepure subroutine compute_score(this)#endifclass(tpca),intent(inout)::thisinteger::i,j#if defined(USE_COARRAY)if(this_image()==1)then#endifallocate(this%score(this%nrow,this%ncol))do i=1,this%nrowdo j=1,this%npcthis%score(i,j)=dot_product(this%mean_data(i,:),this%coeff(:,j))end do end do#if defined(USE_COARRAY)end if#endifend subroutine compute_score