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
float64
array of size(n+p+2q+2, 1)
representing the full concatenated vector \((x, y, z, s, \tau, \kappa)\).- x
ndarray
A
view
ofvec
of size(n, 1)
correpsonding to the primal variable \(x\).- y
ndarray
A
view
ofvec
of size(p, 1)
correpsonding to the dual variable \(y\).- z
VecProduct
A
view
ofvec
of size(q, 1)
correpsonding to the dual variable \(z\).- s
VecProduct
A
view
ofvec
of size(q, 1)
correpsonding to the primal variable \(s\).- tau
ndarray
A
view
ofvec
of size(1, 1)
correpsonding to the primal homogenizing variable \(\tau\).- kap
ndarray
A
view
ofvec
of size(1, 1)
correpsonding to the dual homogenizing variable \(\kappa\).
- vec