Initializing help system before first use

delSos Method

Delete an XPRBsos from the current problem.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 37.1.1.0
Syntax
C#
VB
public void delSos(
	XPRBsos sos
)

Parameters

sos
Type:  BCLXPRBsos
The XPRBsos Special Ordered Set to remove from the problem.

Return Value

Type: 
0 on success, 1 otherwise.
Examples
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);
See Also