Initializing help system before first use

newSol Method

Create a new solution object for this problem.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 37.1.1.0
Syntax
C#
VB
public XPRBsol newSol()

Return Value

Type:  XPRBsol
A new solution
Examples
XPRBprob expl2; XPRBvar x; XPRBsol sol1; expl2 = new XPRBprob("example2"); x = expl2.newVar("x"); sol1 = expl2.newSol(); sol1.addVar( x, 1.0 );
See Also