Reads the ORD file specified by name and copies the priority order information into the invoking CPLEX problem object.

Namespace: ILOG.CPLEX
Assembly: ILOG.CPLEX (in ILOG.CPLEX.dll) Version: 22.1.1.0

Syntax

C#
public virtual void ReadOrder(
	string name
)
Visual Basic
Public Overridable Sub ReadOrder ( _
	name As String _
)

Parameters

name
Type: System..::..String
The name of the file to read.

Remarks

The parameter MipOrdInd must be on (its default setting) for the priority order to be used to start a subsequent optimization. The names in the ORD file must match names in the active model.

By convention, the file extension is .Ord. The ORD file format is documented in the CPLEX File Formats Reference Manual.

See Also