qics.point.Point¶
- class qics.point.Point(model)[source]¶
A class for a vector containing the variables involved in a homogeneous self-dual embedding of a primal-dual conic program \((x, y, z, s, \tau, \kappa)\in\mathbb{R}^n\times\mathbb{R}^p \times\mathbb{R}^q\times\mathbb{R}^q\times\mathbb{R}\times\mathbb{R}\).
- Parameters:
- model
Model Model which specifies the conic program which this vector corresponds to.
- model
- Attributes:
- vec
ndarray 2D
float64array of size(n+p+2q+2, 1)representing the full concatenated vector \((x, y, z, s, \tau, \kappa)\).- x
ndarray A
viewofvecof size(n, 1)correpsonding to the primal variable \(x\).- y
ndarray A
viewofvecof size(p, 1)correpsonding to the dual variable \(y\).- z
VecProduct A
viewofvecof size(q, 1)correpsonding to the dual variable \(z\).- s
VecProduct A
viewofvecof size(q, 1)correpsonding to the primal variable \(s\).- tau
ndarray A
viewofvecof size(1, 1)correpsonding to the primal homogenizing variable \(\tau\).- kap
ndarray A
viewofvecof size(1, 1)correpsonding to the dual homogenizing variable \(\kappa\).
- vec