help-glpk
[Top][All Lists]
Advanced

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

Re: [Help-glpk] counteracting infinite loops


From: Chris Matrakidis
Subject: Re: [Help-glpk] counteracting infinite loops
Date: Sun, 14 Aug 2016 12:36:04 +0300

Zephod,

Indeed, this looks like an instance of cycling. However you don't
provide enough information to give you specific answers. In particular
you don't say whether you are solving a MIP or an LP and whether you
are using the standalone solver or the API. What you can try in any
case is to use the experimental long-step ratio test that was
introduced in version 4.60 (see the NEWS file) which should help with
the numerical stability of the solving process.

Assuming you are using the API (you mentioned #define statements in
your original mail) you can use something like:
smcp.r_test = GLP_RT_FLIP;
for an LP or
iocp.flip = GLP_ON;
for a MIP.

Other things to try are changing the preprocessing and scaling options.

Do let us know whether any of this helped with your problem.


Best Regards,

Chris Matrakidis



reply via email to

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