| Issue 14: | Logic error in solve function in pyipopt.c | |
| 1 person starred this issue and may be notified of changes. | Back to list |
In the pyipopt.c file, in the solve function, the if statement after the call to IpoptSolve is not correct,
if (status == Solve_Succeeded || Solved_To_Acceptable_Level ) {
should be
if (status == Solve_Succeeded || status == Solved_To_Acceptable_Level ) {
Mar 10, 2011
Project Member
#1
xu.mathena
Status:
Fixed
|