Creates an ColumnArray
object suitable for adding new variables to an ILPMatrix
as empty columns.
Creates an ColumnArray
object suitable for adding new variables to an ILPMatrix
as empty columns.
ColumnArray ColumnArray(ILPMatrix,int);
Creates an ColumnArray
object suitable for adding new variables to an ILPMatrix
as columns.
ColumnArray ColumnArray(ILPMatrix,int,int[][],double[][]);
Creates an ColumnArray
object suitable for adding new variables to the objective obj
as linear terms with coefficients specified in val
.
ColumnArray ColumnArray(IObjective,double[]);
Creates an ColumnArray
object suitable for adding num
new variables to the objective obj
as linear terms with coefficients specified in val
.
ColumnArray ColumnArray(IObjective,double[],int,int);
Creates an ColumnArray
suitable for adding new variables to constraint rng
as linear terms with coefficients specified in val
.
ColumnArray ColumnArray(IRange,double[]);
Creates an ColumnArray
suitable for adding num
new variables to constraint IRange
as linear terms with coefficients specified in val
.
ColumnArray ColumnArray(IRange,double[],int,int);