psblas3:
Makefile base/modules/psb_d_mat_mod.f90 util/Makefile util/psb_d_renum_impl.F90 util/psb_gps_mod.f90 util/psb_renum_mod.f90 util/psb_util_mod.f90 Defined renum interface.psblas3-type-indexed
parent
1ad1e72933
commit
a4544daae9
@ -0,0 +1,34 @@
|
||||
subroutine psb_d_mat_renum(alg,mat,info)
|
||||
use psb_base_mod
|
||||
use psb_renum_mod, psb_protect_name => psb_d_mat_renum
|
||||
use psb_gps_mod
|
||||
integer, intent(in) :: alg
|
||||
type(psb_dspmat_type), intent(inout) :: mat
|
||||
integer, intent(out) :: info
|
||||
|
||||
integer :: err_act
|
||||
character(len=20) :: name, ch_err
|
||||
|
||||
info = psb_success_
|
||||
name = 'mat_distf'
|
||||
call psb_erractionsave(err_act)
|
||||
|
||||
info = psb_success_
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
call psb_erractionrestore(err_act)
|
||||
return
|
||||
|
||||
9999 continue
|
||||
call psb_erractionrestore(err_act)
|
||||
if (err_act == psb_act_abort_) then
|
||||
call psb_error(ictxt)
|
||||
return
|
||||
end if
|
||||
return
|
||||
|
||||
|
||||
end subroutine psb_d_mat_renum
|
@ -0,0 +1,14 @@
|
||||
module psb_renum_mod
|
||||
use psb_base_mod
|
||||
|
||||
interface psb_mat_renum
|
||||
subroutine psb_d_mat_renum(alg,mat,info)
|
||||
import psb_dspmat_type
|
||||
integer, intent(in) :: alg
|
||||
type(psb_dspmat_type), intent(inout) :: mat
|
||||
integer, intent(out) :: info
|
||||
end subroutine psb_d_mat_renum
|
||||
end interface psb_mat_renum
|
||||
|
||||
|
||||
end module psb_renum_mod
|
Loading…
Reference in New Issue