Initializing help system before first use

delCut Method

Remove a cut from the current problem.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public int delCut(
	XPRBcut cut
)

Parameters

cut
Type:  BCLXPRBcut
The XPRBcut to remove from the problem definition.

Return Value

Type:  Int32
0 on success, 1 otherwise.
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBvar var = new XPRBvar("Variable1"); XPRBvar var2 = new XPRBvar("Variable2"); XPRBcut cut; cut = prob.newCut(var + 2.3*var2 >= 3.4); ... prob.delCut(cut);
See Also