Initializing help system before first use

isModCut Method

Gets the model cut status of a constraint.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 37.1.1.0
Syntax
C#
VB
public bool isModCut()

Return Value

Type:  Boolean
True on success
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBctr ctr = prob.newCtr("Constraint1"); ... if(ctr.isModCut()) System.Console.Writeln("Model cut status is true.");
See Also