VariableType Enumeration

Variable type.

Definition

Namespace: Orx.MathProg
Assembly: Orx.MathProg (in Orx.MathProg.dll) Version: 1.0.0
C#
public enum VariableType

Members

Binary0 Binary 0/1 variable.

eg: x[i, j] = 0 if job j is assigned to machine i; 0 otherwise.

Integer1 Integer variable.

eg: x[i, j]: number of resources of type j assigned to shift i.

Continuous2 Continuous variable.

eg: x[i,j,c]: amount of flow of commodity c on arc (i,j).

See Also