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 s_spline_matrix_dense__mat_copy(self,tocopy)class(sll_t_spline_matrix_dense),intent(inout)::selfclass(sll_c_spline_matrix),intent(in)::tocopyselect type(tocopy);type is(sll_t_spline_matrix_dense)SLL_ASSERT(tocopy%n==self%n)self%n=tocopy%nself%a(:,:)=tocopy%a(:,:)self%ipiv(:)=tocopy%ipiv(:)self%factorized=tocopy%factorizedend select end subroutine s_spline_matrix_dense__mat_copy