Back-End Reductions¶
The reductions listed here are specific to the choice of back end, i.e.,
solver. Currently, we support two types of back ends: conic solvers and
quadratic program solvers. When a problem is solved through the
solve()
method, CVXPY attempts to find
the best back end for your problem. The
Dcp2Cone
reduction converts DCP-compliant
problems into conic form, while the
Qp2SymbolicQp
converts problems with
quadratic, piecewise affine objectives, affine equality constraints, and
piecewise-linear inequality constraints into a form that is closer to what is
accepted by solvers. The problems output by both reductions must be passed
through another sequence of reductions, not documented here, before they are
ready for to be solved.
Dcp2Cone¶
Qp2SymbolicQp¶
- class cvxpy.reductions.qp2quad_form.qp2symbolic_qp.Qp2SymbolicQp(problem=None)[source]¶
Bases:
Canonicalization
Reduces a quadratic problem to a problem that consists of affine expressions and symbolic quadratic forms.