Initializing help system before first use

readBinSol Method (String, String)

Read the solution from a binary file. Read a binary solution file (.bin), created by the writeBinSol method, loading it into the Optimizer.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public void readBinSol(
	string fname,
	string flags
)

Parameters

fname
Type:  SystemString
name of the solution file, without extension
flags
Type:  SystemString
Flags; please refer to the documentation of XPRSreadbinsol in the Xpress-Optimizer Reference Manual for a description of the supported flags
Examples
XPRBprob expl2; expl2 = new XPRBprob("example2"); ... expl2.readBinSol("myprob","m");
See Also