algorithmsbooks / optimization

Errata for Algorithms for Optimization book
67 stars 16 forks source link

page 183 Algorithm 10.2 error #12

Closed stumarcus314 closed 4 years ago

stumarcus314 commented 4 years ago

The final two lines in the for loop of Algorithm 10.2 augmented_lagrange_method on page 183 should be swapped. That is, the final two lines should be: \lambda -= \rho h(x) \rho = \gamma The Lagrange multiplier estimate \lambda should be updated before the penalty factor \rho is increased.

tawheeler commented 4 years ago

Thank you - that is a sneaky little error. Fixed.

mykelk commented 4 years ago

Thanks so much!

stumarcus314 commented 4 years ago

You can credit Stuart Rogers instead of stumarcus576.

On Sun, Dec 15, 2019 at 12:26 PM Mykel Kochenderfer < notifications@github.com> wrote:

Thanks so much!

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/sisl/algforopt-errata/issues/12?email_source=notifications&email_token=AFIT6C2NYXJRMDRAAFPBKL3QYZZF7A5CNFSM4J2ES4B2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEG47BBA#issuecomment-565833860, or unsubscribe https://github.com/notifications/unsubscribe-auth/AFIT6CYMOZMSJKCFPDLBLVDQYZZF7ANCNFSM4J2ES4BQ .

mykelk commented 4 years ago

Done!