Uses of Class
dev.nm.solver.multivariate.constrained.convex.sdp.socp.problem.SOCPGeneralConstraint
-
Packages that use SOCPGeneralConstraint Package Description dev.nm.solver.multivariate.constrained.convex.sdp.socp.problem -
-
Uses of SOCPGeneralConstraint in dev.nm.solver.multivariate.constrained.convex.sdp.socp.problem
Methods in dev.nm.solver.multivariate.constrained.convex.sdp.socp.problem that return types with arguments of type SOCPGeneralConstraint Modifier and Type Method Description Iterator<SOCPGeneralConstraint>
SOCPGeneralConstraints. iterator()
Methods in dev.nm.solver.multivariate.constrained.convex.sdp.socp.problem with parameters of type SOCPGeneralConstraint Modifier and Type Method Description void
SOCPGeneralConstraints. add(SOCPGeneralConstraint constraint)
Add an SOCP constraint.Constructors in dev.nm.solver.multivariate.constrained.convex.sdp.socp.problem with parameters of type SOCPGeneralConstraint Constructor Description SOCPGeneralConstraints(SOCPGeneralConstraint[] constraints)
Constructs a set of SOCP general constraints.SOCPGeneralProblem(Vector f, SOCPGeneralConstraint[] constraints)
Construct a general Second Order Conic Programming problem.SOCPGeneralProblem1(Vector f, SOCPGeneralConstraint[] generalConstraints, SOCPLinearInequality[] linearInequalities, SOCPLinearEquality[] linearEqualities)
Construct a general Second Order Conic Programming problem.\[ \begin{align*} \min_x \quad &; \mathbf{f^T} x \\ \textrm{s.t.} \quad &; \lVert {A_i}^T x + c_i \rVert_2 \leq b_i^T x + d_i,\quad i = 1,\dots,m \end{align*} \]Constructor parameters in dev.nm.solver.multivariate.constrained.convex.sdp.socp.problem with type arguments of type SOCPGeneralConstraint Constructor Description SOCPGeneralConstraints(List<SOCPGeneralConstraint> constraints)
Constructs a set of SOCP general constraints.SOCPGeneralProblem(Vector f, List<SOCPGeneralConstraint> constraints)
Construct a general Second Order Conic Programming problem.SOCPGeneralProblem1(Vector f, List<SOCPGeneralConstraint> generalConstraints)
Construct a general Second Order Conic Programming problem.SOCPGeneralProblem1(Vector f, List<SOCPGeneralConstraint> generalConstraints, List<SOCPLinearInequality> linearInequalities, List<SOCPLinearEquality> linearEqualities)
Construct a general Second Order Conic Programming problem.
-