Class NonlinearProgrammingProblem represents a nonlinear programming problem.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public class NonlinearProgrammingProblem
Visual Basic (Declaration)
Public Class NonlinearProgrammingProblem
Visual C++
public ref class NonlinearProgrammingProblem

Remarks

Nonlinear programming problems are of the form

minimize f(x) subject to
ci(x) == 0, for i in E,
ci(x) >= 0 for i in I,

where f is the objective function and the constraint functions ci are all smooth, real-valued functions on a subset of Rn, and I and E are finite index subsets of inequality and equality constraints, respectively.

Inheritance Hierarchy

System..::.Object
  CenterSpace.NMath.Analysis..::.NonlinearProgrammingProblem

See Also