| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(sll_t_spline_matrix_dense), | intent(out) | :: | self | |||
| integer, | intent(in) | :: | n |
subroutine s_spline_matrix_dense__init( self, n ) class(sll_t_spline_matrix_dense), intent( out) :: self integer , intent(in ) :: n SLL_ASSERT( n > 0 ) self%n = n allocate( self%ipiv(n) ) allocate( self%a(n,n) ) self%a(:,:) = 0.0_wp self%factorized=.FALSE. end subroutine s_spline_matrix_dense__init