Click or drag to resize

ActiveSetQPSolverSolve(QuadraticProgrammingProblem, DoubleVector) Method

Solves the given convex quadratic programming problem.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public override bool Solve(
	QuadraticProgrammingProblem problem,
	DoubleVector startingPoint
)

Parameters

problem  QuadraticProgrammingProblem
The convex quadratic programming problem.
startingPoint  DoubleVector
A starting point for the solution search. Need not be a feasible point.

Return Value

Boolean
true if the algorithm terminated successfully.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if the matrix problem.H is not positve definite, and thus the problem is not convex.
See Also