| NonlinearProgrammingProblem(Int32, FuncDoubleVector, Double) Constructor |
Constructws a NonlinearProgrammingProblem object with the given
objective function and constraints.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public NonlinearProgrammingProblem(
int xDimension,
Func<DoubleVector, double> objective
)
Public Sub New (
xDimension As Integer,
objective As Func(Of DoubleVector, Double)
)
public:
NonlinearProgrammingProblem(
int xDimension,
Func<DoubleVector^, double>^ objective
)
new :
xDimension : int *
objective : Func<DoubleVector, float> -> NonlinearProgrammingProblem
Parameters
- xDimension Int32
- The dimension of the domain of the objective function.
- objective FuncDoubleVector, Double
- The objective function to minimize.
See Also