Initializing help system before first use

problem.getProbStatusString

problem.getProbStatusString


Purpose
Returns the string corresponding to the the problem status before or after a solve () command.
Synopsis
s = problem.getProbStatusString ()
Example
p = xpress.problem ()
p.read ("example2", "")
p.solve ()
print ("solution status code: ", p.getProbStatus (), " -->",
       p.getProbStatusString ())
Related topics