Initializing help system before first use

setID Method

Set the cut ID value. This method changes the ID value of a previously defined cut. The cut ID can be chosen freely by the user to identify or classify (groups of) cuts.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 37.1.1.0
Syntax
C#
VB
public int setID(
	int type
)

Parameters

type
Type:  SystemInt32
The integer value to assign as the cut ID.

Return Value

Type:  Int32
0 on success, 1 on failure.
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBcut cut = new XPRBcut(); ... cut.setID(300);
See Also