Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXNETgetstat
returns the solution status for
a network problem object.
Example
netstatus = CPXNETgetstat (env, net);
env | A pointer to the CPLEX environment as returned by |
net | A pointer to a CPLEX network problem object as returned by |
CPX_STAT_OPTIMAL | Optimal solution found. |
CPX_STAT_UNBOUNDED | Problem has an unbounded ray. |
CPX_STAT_INFEASIBLE | Problem is infeasible. |
CPX_STAT_INForUNB | Problem is infeasible or unbounded. |
CPX_STAT_ABORT_IT_LIM | Aborted due to iteration limit. |
CPX_STAT_ABORT_TIME_LIM | Aborted due to time limit. |
CPX_STAT_ABORT_USER | Aborted on user request. |