XPRBgetmipstat
| XPRBgetmipstat | 
  Purpose
 
  Synopsis
 
int XPRBgetmipstat(XPRBprob prob); 
 
  Argument
 
| 
     prob 
     | 
     Reference to a problem.
     | 
  Return value
 
| 
     XPRB_MIP_NOT_LOADED 
     | |
| 
     XPRB_MIP_LP_NOT_OPTIMAL 
     | |
| 
     XPRB_MIP_LP_OPTIMAL 
     | |
| 
     XPRB_MIP_NO_SOL_FOUND 
     | |
| 
     XPRB_MIP_SOLUTION 
     | |
| 
     XPRB_MIP_INFEAS 
     | |
| 
     XPRB_MIP_OPTIMAL 
     | |
| 
     XPRB_MIP_UNBOUNDED 
     | 
  Example
 
 The following returns the current MIP status.
 
XPRBprob expl2;
int status;
expl2 = XPRBnewprob("example2");
 ...
XPRBmipoptimize(expl2, "");
status = XPRBgetmipstat(expl2);
  Further information
 
 This function returns the global (MIP) status information from the Xpress Optimizer.
 
  Related topics
 
 
