Creates an Column
object suitable for adding a new variable to an LP matrix as an empty column.
Creates an Column
object suitable for adding a new variable to an LP matrix as an empty column.
Column Column(ILPMatrix);
Creates an Column
object suitable for adding a new variable to an LP matrix as a new column.
Column Column(ILPMatrix,int[],double[]);
Creates an Column
object suitable for adding a new variable to an LP matrix as a new column.
Column Column(ILPMatrix,int[],double[],int,int);
Creates an Column
object suitable for adding a new variable to the objective obj
as a linear term with coefficient val
.
Column Column(IObjective,double);
Creates an Column
object suitable for adding a new variable to constraint rng
as a linear term with coefficient val
.
Column Column(IRange,double);