You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
psblas3/util/psb_renum_mod.f90

17 lines
404 B
Fortran

module psb_renum_mod
use psb_base_mod
integer, parameter :: psb_mat_renum_gps_ = 456
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