Initializing help system before first use

delSol Method

Remove a solution object from this problem.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public void delSol(
	XPRBsol sol
)

Parameters

sol
Type:  BCLXPRBsol

Return Value

Type: 
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 ); expl2.delSol(sol1);
See Also