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_banded__mat_copy(self,tocopy)class(sll_t_spline_matrix_banded),intent(inout)::selfclass(sll_c_spline_matrix),intent(in)::tocopyselect type(tocopy);type is(sll_t_spline_matrix_banded)SLL_ASSERT(tocopy%n==self%n)SLL_ASSERT(tocopy%kl==self%kl)SLL_ASSERT(tocopy%ku==self%ku)self%n=tocopy%nself%kl=tocopy%klself%ku=tocopy%kuself%q(:,:)=tocopy%q(:,:)self%ipiv(:)=tocopy%ipiv(:)self%factorized=tocopy%factorizedend select end subroutine s_spline_matrix_banded__mat_copy