quadratic_programming_problem module¶
A quadratic programming (QP) problem.
- class gemseo.problems.scalable.parametric.core.quadratic_programming_problem.QuadraticProgrammingProblem(Q, c, d, A, b)[source]¶
Bases:
NamedTuple
A quadratic programming (QP) problem.
Minimize \(0.5x^TQx + c^Tx + d\) with respect to \(x\) under the linear constraints \(Ax-b <= 0\).
Create new instance of QuadraticProgrammingProblem(Q, c, d, A, b)
- Parameters:
- count(value, /)¶
Return number of occurrences of value.
- index(value, start=0, stop=9223372036854775807, /)¶
Return first index of value.
Raises ValueError if the value is not present.