find_dense Subroutine

private subroutine find_dense(self, row, col, index)

Type Bound

type_dense

Arguments

Type IntentOptional Attributes Name
class(type_dense), intent(in) :: self
integer(kind=int32), intent(in) :: row
integer(kind=int32), intent(in) :: col
integer(kind=int32), intent(inout) :: index

Source Code

    subroutine find_dense(self, row, col, index)
        implicit none
        class(type_dense), intent(in) :: self
        integer(int32), intent(in) :: row, col
        integer(int32), intent(inout) :: index

        return
    end subroutine find_dense