setsolstat
| setsolstat | 
  Purpose
 
 Set the problem status.
 
  Synopsis
 
void setsolstat(XPRMcontext ctx, XPRMnlpdata nlpdata, int status, double objval);
 
  Arguments
 
| 
     ctx 
     | 
     Mosel's execution context
     | ||||||||||||
| 
     nlpd 
     | 
     Problem information as generated by
     loadprob
     | ||||||||||||
| 
     status 
     | 
     Bit encoded problem status:
     
 | ||||||||||||
| 
     objval 
     | 
  Further information
 
 This function sets the problem status in Mosel. It is usually invoked after an optimization procedure in order to tell Mosel the result of the operation and whether a solution is available. Note that the status
 XPRM_PBSOL can be combined with the other status values (
 e.g.
 XPRM_PBOPT|XPRM_PBSOL).
 
 
