-
Notifications
You must be signed in to change notification settings - Fork 119
IPOPT wrapper improvement to get more iteration information #459
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
fc14cc5
save IPOPT iteration histories
kanekosh 8b174c6
optional parameters
kanekosh 6bd9961
introduce major iteration flag to IPOPT
kanekosh 85c370a
docs
kanekosh a3566cd
test and example
kanekosh efd4cac
improve error handling
kanekosh ea0d6f9
Merge branch 'main' into ipopt-get-conv
kanekosh 1840b5e
check if IPOPT>=3.14
kanekosh 2a5f543
Merge branch 'ipopt-get-conv' of github.com:mdolab/pyoptsparse into i…
kanekosh c688021
remove unnecessary get_current_iterate
kanekosh 90f3cf0
Merge branch 'main' into ipopt-get-conv
kanekosh b7e039b
isort and pre-commit fixes
kanekosh a51a734
rename iter variables to follow IPOPT
kanekosh d47913e
fix variable names in test
kanekosh bd940ca
Merge branch 'main' into ipopt-get-conv
kanekosh 57869c6
rename variables in hs015 plotting example
kanekosh dd146c6
drop ipopt 3.13 support
kanekosh fcd3708
patch version bump
kanekosh c8e03d2
Merge branch 'main' of github.com:mdolab/pyoptsparse into ipopt-get-conv
kanekosh a6adb55
trigger CI
kanekosh 3a9e256
Merge branch 'main' into ipopt-get-conv
marcomangano efa2c90
Merge branch 'main' into ipopt-get-conv
eirikurj File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a curiosity for the moment.. do you think
intermediatecould be used in the same way_snstopis used? #420 is stalled now but I wonder if we could extend similar features to IPOPT.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think so
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, eventually we can reorganize and refactor that part of the logic, it's a fairly common feature for optimizers to provide a per-iteration callback functionality.