help-glpk
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Help-glpk] control parameters and round-off error


From: Andrew Makhorin
Subject: Re: [Help-glpk] control parameters and round-off error
Date: Mon, 14 Jan 2008 21:36:16 +0300

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.)





reply via email to

[Prev in Thread] Current Thread [Next in Thread]