> How can I save the precedent solution in GLPK? > In fact, I add a new column at problem. And, I want to initialize my > solver by the precedent solution obtained.
Do nothing. The current basis (i.e. the set of row and column statuses) is always kept in the problem object. However, if you then need to re-optimize your instance, make sure that before a call to lpx_simplex the lp presolver is disabled. _______________________________________________ Help-glpk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-glpk
