We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue created by migration from Trac.
Original creator: fmargot
Original creation time: 2006-12-13 23:08:26
Assignee: @mjsaltzman
Version:
CC: fmargot@andrew.cmu.edu
Lines 3008 and 3022 of OsiCpxSolverInterface.cpp in method getBasisStatus() should both be changed from
if(sense[i] == 'E') {
to if((sense[i] == 'E') || (sense[i] == 'R')) {
so that status for ranged constraints are correct.
The text was updated successfully, but these errors were encountered:
Attachment cpx_getBasisStatus.cpp by fmargot created at 2006-12-14 15:47:18
Sorry, something went wrong.
Comment by fmargot created at 2006-12-14 15:49:27
The above fix might work incorrectly with maximization problems. The attached file contains a correct version of the method.
Comment by ladanyi created at 2007-06-08 04:05:52
Resolution: fixed
No branches or pull requests
Issue created by migration from Trac.
Original creator: fmargot
Original creation time: 2006-12-13 23:08:26
Assignee: @mjsaltzman
Version:
CC: fmargot@andrew.cmu.edu
Lines 3008 and 3022 of OsiCpxSolverInterface.cpp
in method getBasisStatus() should both be changed from
to
if((sense[i] == 'E') || (sense[i] == 'R')) {
so that status for ranged constraints are correct.
The text was updated successfully, but these errors were encountered: