delSos Method
Delete an XPRBsos from the current problem.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 4.8.14.0

Parameters
- sos
-
Type:
BCLXPRBsos
The XPRBsos Special Ordered Set to remove from the problem.
Return Value
Type:0 on success, 1 otherwise.

XPRBprob prob = new XPRBprob("NewProb"); XPRBvar var = new XPRBvar("Variable"); XPRBvar var2 = new XPRBvar("Variable2"); XPRBsos sos; sos = prob.newSos(BCLconstant.XPRB_S2, var + 3.4*var2); ... prob.delSos(sos);
