Initializing help system before first use

problem.writebinsol

problem.writebinsol


Purpose
Writes the current MIP or LP solution to a binary solution file for later input into the Optimizer.
Synopsis
problem.writebinsol(filename, flags)
Arguments
filename 
A string of up to 200 characters containing the file name to which the solution is to be written. If omitted, the default problem_name is used with a .sol extension.
flags 
(optional) Flags to pass to writebinsol:
output the LP solution.
Example
After an LP has been solved or a MIP solution has been found the solution can be saved to file. If a MIP solution exists it will be written to file unless the x flag is passed to writebinsol in which case the LP solution will be written.
p.read("myprob", "")
p.mipoptimize("")
p.writebinsol("", "")
Related topics