|
|
@ -186,6 +186,7 @@ module psb_c_base_mat_mod
|
|
|
|
procedure, pass(a) :: fix => psb_c_fix_coo
|
|
|
|
procedure, pass(a) :: fix => psb_c_fix_coo
|
|
|
|
procedure, pass(a) :: trim => psb_c_coo_trim
|
|
|
|
procedure, pass(a) :: trim => psb_c_coo_trim
|
|
|
|
procedure, pass(a) :: clean_zeros => psb_c_coo_clean_zeros
|
|
|
|
procedure, pass(a) :: clean_zeros => psb_c_coo_clean_zeros
|
|
|
|
|
|
|
|
procedure, pass(a) :: clean_negidx => psb_c_coo_clean_negidx
|
|
|
|
procedure, pass(a) :: print => psb_c_coo_print
|
|
|
|
procedure, pass(a) :: print => psb_c_coo_print
|
|
|
|
procedure, pass(a) :: free => c_coo_free
|
|
|
|
procedure, pass(a) :: free => c_coo_free
|
|
|
|
procedure, pass(a) :: mold => psb_c_coo_mold
|
|
|
|
procedure, pass(a) :: mold => psb_c_coo_mold
|
|
|
@ -367,6 +368,7 @@ module psb_c_base_mat_mod
|
|
|
|
procedure, pass(a) :: fix => psb_lc_fix_coo
|
|
|
|
procedure, pass(a) :: fix => psb_lc_fix_coo
|
|
|
|
procedure, pass(a) :: trim => psb_lc_coo_trim
|
|
|
|
procedure, pass(a) :: trim => psb_lc_coo_trim
|
|
|
|
procedure, pass(a) :: clean_zeros => psb_lc_coo_clean_zeros
|
|
|
|
procedure, pass(a) :: clean_zeros => psb_lc_coo_clean_zeros
|
|
|
|
|
|
|
|
procedure, pass(a) :: clean_negidx => psb_lc_coo_clean_negidx
|
|
|
|
procedure, pass(a) :: print => psb_lc_coo_print
|
|
|
|
procedure, pass(a) :: print => psb_lc_coo_print
|
|
|
|
procedure, pass(a) :: free => lc_coo_free
|
|
|
|
procedure, pass(a) :: free => lc_coo_free
|
|
|
|
procedure, pass(a) :: mold => psb_lc_coo_mold
|
|
|
|
procedure, pass(a) :: mold => psb_lc_coo_mold
|
|
|
@ -1614,6 +1616,46 @@ module psb_c_base_mat_mod
|
|
|
|
end subroutine psb_c_coo_clean_zeros
|
|
|
|
end subroutine psb_c_coo_clean_zeros
|
|
|
|
end interface
|
|
|
|
end interface
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!>
|
|
|
|
|
|
|
|
!! \memberof psb_c_coo_sparse_mat
|
|
|
|
|
|
|
|
!! \brief Take out any entries with negative row or column index
|
|
|
|
|
|
|
|
!! May happen when converting local/global numbering
|
|
|
|
|
|
|
|
!! \param info return code
|
|
|
|
|
|
|
|
!!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
subroutine psb_c_coo_clean_negidx(a,info)
|
|
|
|
|
|
|
|
import
|
|
|
|
|
|
|
|
class(psb_c_coo_sparse_mat), intent(inout) :: a
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
|
|
|
|
end subroutine psb_c_coo_clean_negidx
|
|
|
|
|
|
|
|
end interface
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!> Funtion: coo_clean_negidx_inner
|
|
|
|
|
|
|
|
!! \brief Take out any entries with negative row or column index
|
|
|
|
|
|
|
|
!! Used internally by coo_clean_negidx
|
|
|
|
|
|
|
|
!! \param nzin Number of entries on input to be handled
|
|
|
|
|
|
|
|
!! \param ia(:) Row indices
|
|
|
|
|
|
|
|
!! \param ja(:) Col indices
|
|
|
|
|
|
|
|
!! \param val(:) Coefficients
|
|
|
|
|
|
|
|
!! \param nzout Number of entries after sorting/duplicate handling
|
|
|
|
|
|
|
|
!! \param info return code
|
|
|
|
|
|
|
|
!!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
interface psb_coo_clean_negidx_inner
|
|
|
|
|
|
|
|
subroutine psb_c_coo_clean_negidx_inner(nzin,ia,ja,val,nzout,info)
|
|
|
|
|
|
|
|
import
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(in) :: nzin
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(inout) :: ia(:), ja(:)
|
|
|
|
|
|
|
|
complex(psb_spk_), intent(inout) :: val(:)
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(out) :: nzout
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
|
|
|
|
end subroutine psb_c_coo_clean_negidx_inner
|
|
|
|
|
|
|
|
end interface psb_coo_clean_negidx_inner
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
!
|
|
|
|
!>
|
|
|
|
!>
|
|
|
|
!! \memberof psb_c_coo_sparse_mat
|
|
|
|
!! \memberof psb_c_coo_sparse_mat
|
|
|
@ -3078,6 +3120,45 @@ module psb_c_base_mat_mod
|
|
|
|
end subroutine psb_lc_coo_clean_zeros
|
|
|
|
end subroutine psb_lc_coo_clean_zeros
|
|
|
|
end interface
|
|
|
|
end interface
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!>
|
|
|
|
|
|
|
|
!! \memberof psb_lc_coo_sparse_mat
|
|
|
|
|
|
|
|
!! \brief Take out any entries with negative row or column index
|
|
|
|
|
|
|
|
!! May happen when converting local/global numbering
|
|
|
|
|
|
|
|
!! \param info return code
|
|
|
|
|
|
|
|
!!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
subroutine psb_lc_coo_clean_negidx(a,info)
|
|
|
|
|
|
|
|
import
|
|
|
|
|
|
|
|
class(psb_lc_coo_sparse_mat), intent(inout) :: a
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
|
|
|
|
end subroutine psb_lc_coo_clean_negidx
|
|
|
|
|
|
|
|
end interface
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
!> Funtion: coo_clean_negidx_inner
|
|
|
|
|
|
|
|
!! \brief Take out any entries with negative row or column index
|
|
|
|
|
|
|
|
!! Used internally by coo_clean_negidx
|
|
|
|
|
|
|
|
!! \param nzin Number of entries on input to be handled
|
|
|
|
|
|
|
|
!! \param ia(:) Row indices
|
|
|
|
|
|
|
|
!! \param ja(:) Col indices
|
|
|
|
|
|
|
|
!! \param val(:) Coefficients
|
|
|
|
|
|
|
|
!! \param nzout Number of entries after sorting/duplicate handling
|
|
|
|
|
|
|
|
!! \param info return code
|
|
|
|
|
|
|
|
!!
|
|
|
|
|
|
|
|
!
|
|
|
|
|
|
|
|
interface psb_coo_clean_negidx_inner
|
|
|
|
|
|
|
|
subroutine psb_lc_coo_clean_negidx_inner(nzin,ia,ja,val,nzout,info)
|
|
|
|
|
|
|
|
import
|
|
|
|
|
|
|
|
integer(psb_lpk_), intent(in) :: nzin
|
|
|
|
|
|
|
|
integer(psb_lpk_), intent(inout) :: ia(:), ja(:)
|
|
|
|
|
|
|
|
complex(psb_spk_), intent(inout) :: val(:)
|
|
|
|
|
|
|
|
integer(psb_lpk_), intent(out) :: nzout
|
|
|
|
|
|
|
|
integer(psb_ipk_), intent(out) :: info
|
|
|
|
|
|
|
|
end subroutine psb_lc_coo_clean_negidx_inner
|
|
|
|
|
|
|
|
end interface psb_coo_clean_negidx_inner
|
|
|
|
|
|
|
|
|
|
|
|
!
|
|
|
|
!
|
|
|
|
!>
|
|
|
|
!>
|
|
|
|
!! \memberof psb_lc_coo_sparse_mat
|
|
|
|
!! \memberof psb_lc_coo_sparse_mat
|
|
|
|