Program e04mffe
! E04MFF Example Program Text
! Mark 30.1 Release. NAG Copyright 2024.
! .. Use Statements ..
Use nag_library, Only: e04mff, e04mhf, nag_wp
! .. Implicit None Statement ..
Implicit None
! .. Parameters ..
Integer, Parameter :: nin = 5, nout = 6
! .. Local Scalars ..
Real (Kind=nag_wp) :: obj
Integer :: i, ifail, iter, j, lda, liwork, &
lwork, n, nclin, sda
Logical :: verbose_output
! .. Local Arrays ..
Real (Kind=nag_wp), Allocatable :: a(:,:), ax(:), bl(:), bu(:), &
clamda(:), cvec(:), work(:), x(:)
Integer, Allocatable :: istate(:), iwork(:)
! .. Intrinsic Procedures ..
Intrinsic :: max
! .. Executable Statements ..
Write (nout,*) 'E04MFF Example Program Results'
! Skip heading in data file
Read (nin,*)
Read (nin,*) n, nclin
liwork = 2*n + 3
! The minimum LWORK for an LP problem:
If (0<nclin .And. nclin<n) Then
lwork = 2*(nclin+1)**2 + 7*n + 5*nclin
Else If (nclin>=n) Then
lwork = 2*n**2 + 7*n + 5*nclin
Else
lwork = 7*n + 1
End If
lda = max(1,nclin)
If (nclin>0) Then
sda = n
Else
sda = 1
End If
Allocate (istate(n+nclin),iwork(liwork),a(lda,sda),bl(n+nclin), &
bu(n+nclin),cvec(n),x(n),ax(max(1,nclin)),clamda(n+nclin),work(lwork))
Read (nin,*) cvec(1:n)
Read (nin,*)(a(i,1:sda),i=1,nclin)
Read (nin,*) bl(1:(n+nclin))
Read (nin,*) bu(1:(n+nclin))
Read (nin,*) x(1:n)
! Set this to .True. to cause e04nqf to produce intermediate
! progress output
verbose_output = .False.
If (.Not. verbose_output) Then
! Turn off intermediate output from e04mff - it is on by default
Call e04mhf('Nolist')
Call e04mhf('Print Level = 0')
End If
! Solve the problem
ifail = 0
Call e04mff(n,nclin,a,lda,bl,bu,cvec,istate,x,iter,obj,ax,clamda,iwork, &
liwork,work,lwork,ifail)
Select Case (ifail)
Case (0:5,7:)
Write (nout,*)
Write (nout,99999)
Do i = 1, n
Write (nout,99998) i, istate(i), x(i), clamda(i)
End Do
If (nclin>0) Then
Write (nout,*)
Write (nout,99997)
Do i = n + 1, n + nclin
j = i - n
Write (nout,99996) j, istate(i), ax(j), clamda(i)
End Do
End If
Write (nout,*)
Write (nout,99995) obj
End Select
99999 Format (1X,'Varbl',3X,'Istate',4X,'Value',9X,'Lagr Mult')
99998 Format (1X,'V',2(1X,I3),4X,1P,E14.3,2X,1P,E12.3)
99997 Format (1X,'L Con',3X,'Istate',4X,'Value',9X,'Lagr Mult')
99996 Format (1X,'L',2(1X,I3),4X,1P,E14.3,2X,1P,E12.3)
99995 Format (1X,'Final objective value = ',1P,E15.3)
End Program e04mffe