Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions example/linalg/example_sparse_from_ijv.f90
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ program example_sparse_from_ijv
print *, 'ELL'
print *, ' index | data'
do i = 1, ELL%nrows
print '(3I4,x,3f8.1)', ELL%index(i,:) , ELL%data(i,:)
print '(3I4,1x,3f8.1)', ELL%index(i,:) , ELL%data(i,:)
end do

end program example_sparse_from_ijv
end program example_sparse_from_ijv
Loading