ComplementarityModel

Documentation for ComplementarityModel.

ComplementarityModel.LP_to_LCPMethod
LP_to_LCP(c, A, b)

Implements the self-embedding model for Linear Program

min cᵀx s.t.  Ax=b, x ≥ 0

from Roos, C., Terlaky, T., & Vial, J. P. (2005). Interior point methods for linear optimization.

source
ComplementarityModel.LP_to_feasible_LCPMethod
LP_to_feasible_LCP(c, A, b; μ = one(T))

Implements the self-embedding model for Linear Program

min cᵀx s.t.  Ax=b, x ≥ 0

from Roos, C., Terlaky, T., & Vial, J. P. (2005). Interior point methods for linear optimization. The returned problem is such that ones(nn) * √μ is on the central path.

source