help-glpk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-glpk] glp_get_status


From: Andrew Makhorin
Subject: Re: [Help-glpk] glp_get_status
Date: Tue, 18 Oct 2011 12:30:18 +0400

> Yes when I print status I got numbers but I would like to have OPT ...
> 

switch (glp_get_status(lp))
{  case GLP_OPT:
      s = "OPTIMAL";
      break;
   case GLP_INFEAS:
   case GLP_NOFEAS:
      s = "INFEASIBLE";
      break;
   . . .
}





reply via email to

[Prev in Thread] Current Thread [Next in Thread]