delCut Method
Remove a cut from the current problem.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0

Parameters
- cut
-
Type:
BCLXPRBcut
The XPRBcut to remove from the problem definition.
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);
