@ -1,5 +1,6 @@
Changelog. A lot less detailed than usual, at least for past
history.
2015/07/28: Fix bug in transpose.
2015/03/20: Introduce some optimizations for conversions to/from.
2015/01/05: Fix silly bug in format conversion csr_from_coo.
@ -1873,6 +1873,7 @@ contains
call a%set_nrows(izero)
call a%set_ncols(izero)
call a%set_nzeros(izero)
call a%set_sort_status(psb_unsorted_)
return
@ -1904,8 +1905,9 @@ contains
call move_alloc(a%ia,itemp)
call move_alloc(a%ja,a%ia)
call move_alloc(itemp,a%ja)
call a%set_sorted(.false.)