OptimizationModel.AddIntegerVariable Method

Definition

Namespace: Extreme.Mathematics.Optimization
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

AddIntegerVariable(String) Adds an integer variable to the collection.
AddIntegerVariable(String, Int32, Int32) Adds a binary variable to the collection.

AddIntegerVariable(String)

Adds an integer variable to the collection.
C#
public DecisionVariable AddIntegerVariable(
	string name
)

Parameters

name  String
The name of the variable.

Return Value

DecisionVariable
The new DecisionVariable.

Exceptions

ArgumentException The optimization model already contains a variable named name.

AddIntegerVariable(String, Int32, Int32)

Adds a binary variable to the collection.
C#
public DecisionVariable AddIntegerVariable(
	string name,
	int lowerBound,
	int upperBound
)

Parameters

name  String
The name of the variable.
lowerBound  Int32
The lower bound for the variable.
upperBound  Int32
The upper bound for the variable.

Return Value

DecisionVariable
The new DecisionVariable.

Exceptions

ArgumentException The optimization model already contains a variable named name.

See Also