Skip to content

Commit

Permalink
Fix output format in sparse example
Browse files Browse the repository at this point in the history
Fixes #918
  • Loading branch information
jalvesz authored Jan 30, 2025
1 parent 74f5f90 commit 7fb6d2a
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 7fb6d2a

Please sign in to comment.