|  | LagrangianFunction Constructor | 
            Constructs a LagrangianFunction for the given objective function
            and constraints.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic LagrangianFunction(
	int xDimension,
	DoubleFunctional f,
	IEnumerable<Constraint> constraints
)
Public Sub New ( 
	xDimension As Integer,
	f As DoubleFunctional,
	constraints As IEnumerable(Of Constraint)
)
public:
LagrangianFunction(
	int xDimension, 
	DoubleFunctional^ f, 
	IEnumerable<Constraint^>^ constraints
)
new : 
        xDimension : int * 
        f : DoubleFunctional * 
        constraints : IEnumerable<Constraint> -> LagrangianFunctionParameters
- xDimension  Int32
- The dimension of the domain of the objective function.
- f  DoubleFunctional
- Delegate representing the objective functions.
- constraints  IEnumerableConstraint
- The constraints.
 See Also
See Also