ComplementarityModel
Documentation for ComplementarityModel.
ComplementarityModel.LinearComplementarityProblem
ComplementarityModel.MixedComplementarityProblem
ComplementarityModel.NonLinearComplementarityProblem
ComplementarityModel.CFB
ComplementarityModel.Cmin
ComplementarityModel.JCFB
ComplementarityModel.JCFBv
ComplementarityModel.JCmin
ComplementarityModel.JCminv
ComplementarityModel.LP_to_LCP
ComplementarityModel.LP_to_feasible_LCP
ComplementarityModel.LinearComplementarityProblem
— TypeStructure to handle the linear complementarity problem in standard form:
0 ≤ Mx + q | x ≥ 0
ComplementarityModel.MixedComplementarityProblem
— TypeStructure to handle the mixed complementarity problem in standard form:
0 ≤ F(x) | G(x) ≥ 0
ComplementarityModel.NonLinearComplementarityProblem
— TypeStructure to handle the nonlinear complementarity problem in standard form:
0 ≤ F(x) | x ≥ 0
ComplementarityModel.CFB
— MethodCFB(Fx, Gx)
Compute the C-function value.
ComplementarityModel.Cmin
— MethodCmin(Fx, Gx)
Compute the C-function value.
ComplementarityModel.JCFB
— MethodJCFB(Fx, Gx, JFx, JGx)
Compute the jacobian's diagonal of the C-function.
ComplementarityModel.JCFBv
— MethodJCFBv(Fx, Gx, JFx, JGx)
Compute the jacobian's diagonal of the C-function.
ComplementarityModel.JCmin
— MethodJCmin(Fx, Gx, JFx, JGx)
Compute the jacobian's diagonal of the C-function.
ComplementarityModel.JCminv
— MethodJCminv(Fx, Gx, JFx, JGx)
Compute the jacobian's diagonal of the C-function.
ComplementarityModel.LP_to_LCP
— MethodLP_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.
ComplementarityModel.LP_to_feasible_LCP
— MethodLP_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.