Initializing help system before first use

setModCut Method

Sets the model cut status of a constraint.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public int setModCut(
	bool m
)

Parameters

m
Type:  SystemBoolean
The boolean status to set the constraint model cut to.

Return Value

Type:  Int32
0 on success
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBctr ctr = prob.newCtr("Constraint1"); ... ctr.setModCut(true);
See Also