Class PrimalDualSolution
- java.lang.Object
-
- dev.nm.solver.multivariate.constrained.convex.sdp.socp.interiorpoint.PrimalDualSolution
-
public class PrimalDualSolution extends Object
The vector set {x, s, y} is a solution to both the primal and dual SOCP problems.
-
-
Field Summary
Fields Modifier and Type Field Description ImmutableVector
s
This is the auxiliary helper to solve the dual problem.ImmutableVector
x
This is the minimizer for the primal problem.ImmutableVector
y
This is the maximizer for the dual problem.
-
Constructor Summary
Constructors Constructor Description PrimalDualSolution(Vector x, Vector s, Vector y)
Construct a solution to a primal and a dual SOCP problems.
-
-
-
Field Detail
-
x
public final ImmutableVector x
This is the minimizer for the primal problem.
-
y
public final ImmutableVector y
This is the maximizer for the dual problem.
-
s
public final ImmutableVector s
This is the auxiliary helper to solve the dual problem.
-
-