Program f11db_p0w_fe
! F11DB_P0W_F Example Program Text
! Mark 29.2 Release. NAG Copyright 2023.
! .. Use Statements ..
Use iso_c_binding, Only: c_ptr
Use nagad_library, Only: f11da_p0w_f, f11db_p0w_f
Use nag_library, Only: nag_wp
! .. Implicit None Statement ..
Implicit None
! .. Parameters ..
Integer, Parameter :: nin = 5, nout = 6
! .. Local Scalars ..
Type (c_ptr) :: ad_handle
Real (Kind=nag_wp) :: dtol
Integer :: i, ifail, la, lfill, liwork, n, nnz, &
nnzc, npivm
Character (1) :: check, milu, pstrat, trans
! .. Local Arrays ..
Real (Kind=nag_wp), Allocatable :: a(:), x(:), y(:)
Integer, Allocatable :: icol(:), idiag(:), ipivp(:), &
ipivq(:), irow(:), istr(:), iwork(:)
! .. Executable Statements ..
Write (nout,*) 'F11DB_P0W_F Example Program Results'
Write (nout,*)
! Skip heading in data file
Read (nin,*)
! Read order of matrix and number of nonzero entries
Read (nin,*) n
Read (nin,*) nnz
la = 2*nnz
liwork = 7*n + 2
Allocate (a(la),x(n),y(n),icol(la),idiag(n),ipivp(n),ipivq(n),irow(la), &
istr(n+1),iwork(liwork))
! Read the matrix A
Do i = 1, nnz
Read (nin,*) a(i), irow(i), icol(i)
End Do
! Read the vector y
Read (nin,*) y(1:n)
lfill = -1
dtol = 0.E0_nag_wp
pstrat = 'C'
milu = 'N'
ifail = 0
Call f11da_p0w_f(ad_handle,n,nnz,a,la,irow,icol,lfill,dtol,pstrat,milu, &
ipivp,ipivq,istr,idiag,nnzc,npivm,iwork,liwork,ifail)
! Check value of npivm
If (npivm>0) Then
Write (nout,*) 'Factorization is not complete'
Else
! Solve P L D U x = y
trans = 'N'
check = 'C'
ifail = 0
Call f11db_p0w_f(ad_handle,trans,n,a,la,irow,icol,ipivp,ipivq,istr, &
idiag,check,y,x,ifail)
! Output results
Write (nout,*) ' Solution of linear system'
Write (nout,'(E16.4)') x(1:n)
End If
End Program f11db_p0w_fe