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

Parameters
- cut
-
Type:
BCLXPRBcut
The XPRBcut to release.
Return Value
Type: Int320 on success, 1 otherwise.

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);
