-
Notifications
You must be signed in to change notification settings - Fork 15
Integrate new POI #302
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
Integrate new POI #302
Conversation
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.
Looking good!
trying to add a function test_jump_psd_cone_with_parameter_pv_v_pv()
model = DiffOpt.conic_diff_model(SCS.Optimizer)
@variable(model, x)
@variable(model, p in MOI.Parameter(1.0))
@constraint(
model,
con,
[p * x, (2 * x - 3), p * 3 * x] in
MOI.PositiveSemidefiniteConeTriangle(2)
)
@objective(model, Min, x)
optimize!(model)
direction_p = 2.0
DiffOpt.set_forward_parameter(model, p, direction_p)
DiffOpt.forward_differentiate!(model)
# ERROR
end but hitting:
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## jg/jumpapi #302 +/- ##
===========================================
Coverage 88.67% 88.67%
===========================================
Files 16 16
Lines 2057 2057
===========================================
Hits 1824 1824
Misses 233 233 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Adding constraint as anonymous for now. |
Fixed constraint name on jump-dev/ParametricOptInterface.jl#189 |
* initial sketch * rm method * add JuMP API and test it * add diff_model test * Fix conic error (#284) * fix conic error * use jump psd problem * [docs] update to Documenter@1 (#286) * [docs] update to Documenter@1 * Update * update * format * Pass attributes through Objective.FunctionConversionBridge (#287) * Pass attributes through Objective.FunctionConversionBridge * Fix * add test * fix tol * fix test * add reverse test --------- Co-authored-by: joaquimg <[email protected]> * bump POI * cleanup --------- Co-authored-by: Oscar Dowson <[email protected]> Co-authored-by: Benoît Legat <[email protected]> Co-authored-by: joaquimg <[email protected]> * fix parameters support * Update jump-api pr (#294) * prepare more tests * sketch * temp examples * remove printing * remove printing * remove duplicatie def * move definition * format * format * simplify conic model * force nlp on nlp tests * fix param tests * cleanup parameter usage * remove code * cleanup usage of parameters * format * add temp dep * format * add temp dep * fix PSDSquare * temp fix for tests * format * Improve name handling, cleanup parameter error messages, remove slack * re-enable constraint names * Integrate new POI (#302) * integrate new POI * remove test * rm adhoc pkg add * fix docs * add POI test and docs * rm test_solve_conflict * format * add parameter in cone test * add back name constraint vect * Update Project.toml --------- Co-authored-by: Joaquim <[email protected]> * add tests * format --------- Co-authored-by: Andrew Rosemberg <[email protected]> Co-authored-by: Oscar Dowson <[email protected]> Co-authored-by: Benoît Legat <[email protected]>
integrate POI to #281