Skip to content

Commit

Permalink
Update src/stdlib_sparse_kinds.fypp
Browse files Browse the repository at this point in the history
Co-authored-by: Jeremie Vandenplas <[email protected]>
  • Loading branch information
jalvesz and jvdp1 authored Jul 9, 2024
1 parent 697afa2 commit c97e665
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stdlib_sparse_kinds.fypp
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ module stdlib_sparse_kinds

!> COO: COOrdinates compresed format
type, public, extends(sparse_type) :: COO_type
logical :: is_sorted = .false. !> whether the matrix is sorted or not
integer, allocatable :: index(:,:) !> Matrix coordinates index(2,nnz)
logical :: is_sorted = .false. !! whether the matrix is sorted or not
integer, allocatable :: index(:,:) !! Matrix coordinates index(2,nnz)
contains
procedure :: malloc => malloc_coo
end type
Expand Down

0 comments on commit c97e665

Please sign in to comment.