add Method
Add an XPRBexpr to the XPRBsos.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 37.1.1.0

Parameters
- l
-
Type:
BCLXPRBexpr
The XPRBexpr to add to the XPRBsos.

XPRBprob prob = new XPRBprob("NewProb"); XPRBsos sos = new XPRBsos(); XPRBvar var = new XPRBvar("Variable"); XPRBvar var2 = new XPRBvar("Variable2"); ... sos.add(3.14*var - 2.3*var2);
