Initializing help system before first use

writeBinSol Method (String, String)

Writes the solution to a binary file. Writes the current MIP or LP Optimizer solution to a binary solution file (.sol) for later input into the Optimizer.

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

Parameters

fname
Type:  SystemString
Name of the output file, without extension
flags
Type:  SystemString
Flags; see XPRSwritebinsol documentation in the Xpress Optimizer Reference Manual for a full description
Examples
XPRBprob expl2; expl2 = new XPRBprob("example2"); ... expl2.writeBinSol("myprob","x");
See Also