Linear Program.Add Integer Variable Method
Definition
Namespace: Numerics.NET.Optimization
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Overload List
Add | Adds an integer variable to the collection. |
Add | Adds a binary variable to the collection. |
Add | Adds a binary variable to the collection. |
Add | Adds a binary variable to the collection. |
AddIntegerVariable(String, Double)
Adds a binary variable to the collection.
public LinearProgramVariable AddIntegerVariable(
string name,
double cost
)
Parameters
Return Value
LinearProgramVariableThe new DecisionVariable.
Exceptions
Argument | The linear program already contains a variable named name. |
AddIntegerVariable(String, Double, Int32, Int32)
Adds a binary variable to the collection.
public LinearProgramVariable AddIntegerVariable(
string name,
double cost,
int lowerBound,
int upperBound
)
Parameters
- name String
- The name of the variable.
- cost Double
- The cost associated with the variable.
- lowerBound Int32
- The lower bound for the variable.
- upperBound Int32
- The upper bound for the variable.
Return Value
LinearProgramVariableThe new DecisionVariable.
Exceptions
Argument | The linear program already contains a variable named name. |