Initializing help system before first use

delCut Method

Release the memory used by an XPRBcut object created for this problem. Does not remove a cut previously added by XPRSprob.addCuts from the problem.

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

Parameters

cut
Type:  BCLXPRBcut
The XPRBcut to release.

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