Initializing help system before first use

writeSlxSol Method (String, String)

Write solution to a an ASCII file. Writes the current Optimizer solution to an ASCII solution file (.slx) using a similar format to MPS files.

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

Parameters

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