Joseph, > However, when I attempt to solve this problem using the > fortran-glpk interface, the glp_simplex call returns 0.
This is normal, 0 means that the call terminated successfully. > How do I identify > an unbounded problem when calling glpk via the glp_simplex function call. Calling glp_get_stat() after glp_simplex() returns 0 will give GLP_UNBND for an unbounded problem. Best Regards, Chris Matrakidis _______________________________________________ Help-glpk mailing list [email protected] https://lists.gnu.org/mailman/listinfo/help-glpk
