-
Notifications
You must be signed in to change notification settings - Fork 14
Fix conic error #284
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
Fix conic error #284
Conversation
* [docs] update to Documenter@1 * Update
# FIXME: this is not working - https://github.com/jump-dev/DiffOpt.jl/issues/283 | ||
# @test JuMP.coefficient(MOI.get(model, DiffOpt.ReverseConstraintFunction(), csoc).func.func.func, t.index) ≈ ds atol=ATOL rtol=RTOL | ||
|
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.
No clear API: #283
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.
this will be left open for a future PR
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## jg/jumpapi #284 +/- ##
==============================================
+ Coverage 89.08% 89.43% +0.35%
==============================================
Files 15 16 +1
Lines 1969 1997 +28
==============================================
+ Hits 1754 1786 +32
+ Misses 215 211 -4 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
* Pass attributes through Objective.FunctionConversionBridge * Fix * add test * fix tol * fix test * add reverse test --------- Co-authored-by: joaquimg <joaquimdgarcia@gmail.com>
Fix the bug in the conic formulation in which forward sensitivities with LHS have flipped the sign.
Related to how the
dA
matrix of sensitivities is used.TODO:
ReverseConstraintFunction
for Conic Constraints #283DiffOpt.forward_differentiate!
from PSD Conic JuMP problems #285