PROGRAM nag_sparse_prec_ex06 ! Example Program Text for nag_sparse_prec ! NAG fl90, Release 4. NAG Copyright 2000. ! .. Use Statements .. USE nag_examples_io, ONLY : nag_std_in, nag_std_out USE nag_sparse_mat, ONLY : nag_sparse_mat_init_coo, & nag_sparse_mat_cmplx_wp => nag_sparse_mat_cmplx_dp, nag_deallocate USE nag_sparse_prec, ONLY : nag_sparse_prec_init_ilu, & nag_sparse_prec_sol ! .. Implicit None Statement .. IMPLICIT NONE ! .. Intrinsic Functions .. INTRINSIC KIND ! .. Parameters .. INTEGER, PARAMETER :: wp = KIND(1.0D0) ! .. Local Scalars .. INTEGER :: i, n, nnz TYPE (nag_sparse_mat_cmplx_wp) :: a, c_ilu ! .. Local Arrays .. INTEGER, ALLOCATABLE :: col(:), row(:) COMPLEX (wp), ALLOCATABLE :: r(:), value(:), z(:) ! .. Executable Statements .. WRITE (nag_std_out,*) 'Example Program Results for nag_sparse_prec_ex06' READ (nag_std_in,*) ! Skip heading in data file READ (nag_std_in,*) n, nnz ALLOCATE (row(nnz),col(nnz),value(nnz),r(n),z(n)) DO i = 1, nnz READ (nag_std_in,*) value(i), row(i), col(i) END DO READ (nag_std_in,*) r CALL nag_sparse_mat_init_coo(a,n,value,row,col) CALL nag_sparse_prec_init_ilu(a,c_ilu,drop_tol=0.0_wp) CALL nag_sparse_prec_sol(c_ilu,r,z) WRITE (nag_std_out,*) 'Solution of linear system' WRITE (nag_std_out,'(3X,''('',F4.1,'','',F4.1,'')'')') z CALL nag_deallocate(a) CALL nag_deallocate(c_ilu) DEALLOCATE (row,col,value,r,z) END PROGRAM nag_sparse_prec_ex06