VariableCollection Constructor (String, Double, Double, VariableType, IEnumerable[])

Fabrica Bolos GLPK

Collapse imageExpand ImageCopy imageCopyHover image
Initializes a new instance of the VariableCollection class.

Namespace: Optimization
Assembly: Optimization.Framework (in Optimization.Framework.dll) Version: 0.3.1036.0

Syntax

C#
public VariableCollection(
	string name,
	double lowerBound,
	double upperBound,
	VariableType type,
	params IEnumerable[] sets
)
Visual Basic
Public Sub New ( _
	name As String, _
	lowerBound As Double, _
	upperBound As Double, _
	type As VariableType, _
	ParamArray sets As IEnumerable() _
)
Visual C++
public:
VariableCollection(
	String^ name, 
	double lowerBound, 
	double upperBound, 
	VariableType type, 
	... array<IEnumerable^>^ sets
)

Parameters

name
Type: System..::..String
The name.
lowerBound
Type: System..::..Double
The lower bound.
upperBound
Type: System..::..Double
The upper bound.
type
Type: Optimization..::..VariableType
The type.
sets
Type: array<System.Collections..::..IEnumerable>[]()[][]
The sets.

See Also