Variable Constructor

Fabrica Bolos GLPK

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

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

Syntax

C#
public Variable(
	string name,
	double lowerbound,
	double upperbound,
	VariableType type
)
Visual Basic
Public Sub New ( _
	name As String, _
	lowerbound As Double, _
	upperbound As Double, _
	type As VariableType _
)
Visual C++
public:
Variable(
	String^ name, 
	double lowerbound, 
	double upperbound, 
	VariableType type
)

Parameters

name
Type: System..::..String
The name.
lowerbound
Type: System..::..Double
The lowerbound.
upperbound
Type: System..::..Double
The upperbound.
type
Type: Optimization..::..VariableType
The type.

See Also