Initializing help system before first use

XPRBdelsol

XPRBdelsol


Purpose
Delete a solution.
Synopsis
int XPRBdelsol(XPRBsol sol);
Argument
sol 
Reference to a previously defined solution.
Return value
0 if function executed successfully, 1 otherwise.
Example
The following deletes the Ssolution sol1.
XPRBprob prob;
XPRBsol sol1;
   ...
sol1 = XPRBnewsol(prob);
XPRBdelsol(sol1);
Further information
This function deletes an XPRBsol solution (without deleting the variables it contains).
Related topics