-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
_masterFunc2
fail flag caching and add fail flag identification…
… to IPOPT (#407) * Cache fail flag * Return NaN from IPOPT callback functions if evaluation failure * Fixed typo in copy pasted code * Fail flag tests with _masterFunc * Undo accidental change of ipopt linear solver * Simplify boolean evaluation * Formatting * A bit more test coverage * A couple more unit tests to thoroughly test failure flag caching * More thorough test parameterization * Bounce the interpretation * Upper (exclusive) bound of NumPy v2 * Last last unit test * Formatting * Upper numpy bound in conda environemnt
- Loading branch information
1 parent
da0077a
commit 7376d71
Showing
6 changed files
with
303 additions
and
12 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
dependencies: | ||
# build | ||
- python >=3.9 | ||
- numpy >=1.21 | ||
- numpy >=1.21,<2 | ||
- ipopt | ||
- swig | ||
- meson >=1.3.2 | ||
|
This file contains 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 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 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 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.