Returns the solution vector for a range of columns of an LP matrix.

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

Syntax

C#
public virtual double[] GetValues(
	ILPMatrix matrix,
	int start,
	int num
)

Parameters

matrix
Type: ILPMatrix
start
Type: System..::..Int32
num
Type: System..::..Int32

Return Value

The solution vector for the specified columns of an LP matrix. If x is the array returned by this method, x[j] will be the solution value for the variable corresponding to column j+start of matrix.

See Also