Skip to content

Commit

Permalink
231017.181746.HKT minor revision
Browse files Browse the repository at this point in the history
  • Loading branch information
zaikunzhang committed Oct 17, 2023
1 parent aab38e1 commit 29d048b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion fortran/cobyla/cobylb.f90
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ module cobylb_mod
!
! Started: July 2021
!
! Last Modified: Sunday, October 08, 2023 PM06:32:38
! Last Modified: Monday, October 16, 2023 AM01:15:52
!--------------------------------------------------------------------------------------------------!

implicit none
Expand Down
5 changes: 3 additions & 2 deletions fortran/lincoa/lincob.f90
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module lincob_mod
!
! Started: February 2022
!
! Last Modified: Friday, August 04, 2023 PM09:53:21
! Last Modified: Tuesday, October 17, 2023 PM02:52:22
!--------------------------------------------------------------------------------------------------!

implicit none
Expand Down Expand Up @@ -176,14 +176,15 @@ subroutine lincob(calfun, iprint, maxfilt, maxfun, npt, Aeq, Aineq, amat, beq, b
real(RP) :: cfilt(maxfilt)
real(RP) :: constr(count(xl > -REALMAX) + count(xu < REALMAX) + 2 * size(beq) + size(bineq))
real(RP) :: constr_leq(size(beq))
real(RP) :: cval(npt)
real(RP) :: d(size(x))
real(RP) :: delbar
real(RP) :: delta
real(RP) :: distsq(npt)
real(RP) :: dnorm
real(RP) :: dnorm_rec(4) ! Powell's implementation uses 5
real(RP) :: ffilt(maxfilt)
real(RP) :: fval(npt), cval(npt)
real(RP) :: fval(npt)
real(RP) :: galt(size(x))
real(RP) :: gamma3
real(RP) :: gopt(size(x))
Expand Down

0 comments on commit 29d048b

Please sign in to comment.