equal
deleted
inserted
replaced
91 |
91 |
92 //Fortunately, MIP statuses did not change for cplex 8.0 |
92 //Fortunately, MIP statuses did not change for cplex 8.0 |
93 switch (stat) |
93 switch (stat) |
94 { |
94 { |
95 case CPXMIP_OPTIMAL: |
95 case CPXMIP_OPTIMAL: |
|
96 // Optimal integer solution has been found. |
|
97 case CPXMIP_OPTIMAL_TOL: |
|
98 // Optimal soluton with the tolerance defined by epgap or epagap has |
|
99 // been found. |
96 return OPTIMAL; |
100 return OPTIMAL; |
97 //This also exists in later issues |
101 //This also exists in later issues |
98 // case CPXMIP_UNBOUNDED: |
102 // case CPXMIP_UNBOUNDED: |
99 //return INFINITE; |
103 //return INFINITE; |
100 case CPXMIP_INFEASIBLE: |
104 case CPXMIP_INFEASIBLE: |