[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug-glpk] [Fwd: RE: [Fwd: Issue in 4.51]]
From: |
Andrew Makhorin |
Subject: |
[Bug-glpk] [Fwd: RE: [Fwd: Issue in 4.51]] |
Date: |
Wed, 26 Jun 2013 00:02:56 +0400 |
-------- Forwarded Message --------
From: Guillermo Irisarri <address@hidden>
To: Andrew Makhorin <address@hidden>
Cc: address@hidden <address@hidden>
Subject: RE: [Bug-glpk] [Fwd: Issue in 4.51]
Date: Tue, 25 Jun 2013 14:21:30 -0500
Hello Andrew:
Thank you very much for your response and suggestion for the specification to
glp_set_col. I changed that portion of the code and now I do get the correct
solution with the 4.51 version. It is interesting that previous versions did
not manifest the error as 4.51 did.
Thanks for your help and also for your work in GLPK.
Guillermo
-----Original Message-----
From: Andrew Makhorin [mailto:address@hidden
Sent: Tuesday, June 25, 2013 1:39 PM
To: Guillermo Irisarri
Cc: address@hidden
Subject: Re: [Bug-glpk] [Fwd: Issue in 4.51]
> else if (fabs(lb - ub) < 1e-12)
> type = GLP_DB;
Must read
else if (ub - lb > 1e-12)
type = GLP_DB;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Bug-glpk] [Fwd: RE: [Fwd: Issue in 4.51]],
Andrew Makhorin <=