Initializing help system before first use

assign Method

Assign an XPRBexpr to the current XPRBsos Special Ordered Set.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 37.1.1.0
Syntax
C#
VB
public void assign(
	XPRBexpr l
)

Parameters

l
Type:  BCLXPRBexpr
The XPRBexpr to assign.
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBvar var = new XPRBvar("Variable"); XPRBsos sos = new XPRBsos(); XPRBexpr exp = new XPRBexpr(2.3*var - 6.9); ... sos.assign(exp);
See Also