Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
integer, | intent(in) | :: | ifail |
subroutine final_header(ifail)
use process_output, only: oheadr
use constants, only: nout
implicit none
integer, intent(in) :: ifail
if (ifail == 1) then
call oheadr(nout,'Final Feasible Point')
else
call oheadr(nout,'Final UNFEASIBLE Point')
end if
end subroutine final_header