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.
9 lines
250 B
Fortran
9 lines
250 B
Fortran
20 years ago
|
module psb_parts_mod
|
||
|
interface
|
||
|
subroutine psb_parts(glob_index,nrow,np,pv,nv)
|
||
|
integer, intent (in) :: glob_index,np,nrow
|
||
|
integer, intent (out) :: nv, pv(*)
|
||
|
end subroutine psb_parts
|
||
|
end interface
|
||
|
end module psb_parts_mod
|