|
| 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;
. . .
}
| [Prev in Thread] | Current Thread | [Next in Thread] |