Closed bstellato closed 4 years ago
Update to DPP format when the CVXPY parametric QP interface is ready.
Need to update intermediate chains extraction. The intermediate problem becomes data[s.PARAM_PROB] in cvxpy 1.1. To solve it you need to call
data[s.PARAM_PROB]
P, q, A, l, u = problem.apply_parameters()
to get the low-level problem representation. Then it is easy to check which constraints are tight or not.
Update to DPP format when the CVXPY parametric QP interface is ready.
Need to update intermediate chains extraction. The intermediate problem becomes
data[s.PARAM_PROB]
in cvxpy 1.1. To solve it you need to callto get the low-level problem representation. Then it is easy to check which constraints are tight or not.