Try changing the factorization control parameters before the first call to glp_simplex:
glp_bfcp parm; glp_get_bfcp(lp, &parm); parm.type = GLP_BF_GR; parm.nrs_max = 20; /* or even 10 */ glp_set_bfcp(lp, &parm); (Forgot to add the last line.) _______________________________________________ Help-glpk mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-glpk
