Creates an IColumn object suitable for adding a new variable to an LP matrix as a new column. Note, that the column of the LP matrix is only created when creating a variable with the returned IColumn object but not when calling this method.

Namespace: ILOG.Concert
Assembly: oplall (in oplall.dll)

Syntax

C#
IColumn Column(
	ILPMatrix lp,
	int[] ind,
	double[] val
)

Parameters

lp
Type: ILPMatrix
ind
Type: array<System..::..Int32>[]()[][]
val
Type: array<System..::..Double>[]()[][]

Return Value

An IColumn object suitable for creating a new column in lp with nonzeros as specified by the arguments ind and val.

See Also