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.
22 lines
371 B
Fortran
22 lines
371 B
Fortran
program zhb2mm
|
|
use psb_sparse_mod
|
|
use mmio
|
|
use hbio
|
|
type(psb_zspmat_type) :: a
|
|
|
|
integer n, nnz,info,i,j,k
|
|
INTEGER :: iwflag,IOUT,NCOL,NELTVL,NNZERO,NRHS,NRHSIX,NROW,&
|
|
& iter
|
|
CHARACTER :: RHSDATATYPE,DATATYPE*3,KEY*8,OUTFILE*20,MTITLE*72
|
|
|
|
|
|
call hb_read(a,info,mtitle=mtitle)
|
|
|
|
call mm_mat_write(a,mtitle,info)
|
|
|
|
stop
|
|
|
|
|
|
end program zhb2mm
|
|
|