equal
deleted
inserted
replaced
283 status = CPXgetobjval(env, lp, &objval); |
283 status = CPXgetobjval(env, lp, &objval); |
284 //printf("Objective value: %g \n",objval); |
284 //printf("Objective value: %g \n",objval); |
285 return objval; |
285 return objval; |
286 } |
286 } |
287 bool LpCplex::_isBasicCol(int i) { |
287 bool LpCplex::_isBasicCol(int i) { |
288 int* cstat=new int[CPXgetnumcols(env, lp)]; |
288 int cstat[CPXgetnumcols(env, lp)]; |
289 return CPXgetbase(env, lp, cstat, NULL); |
289 CPXgetbase(env, lp, cstat, NULL); |
290 bool result=(cstat[i]==CPX_BASIC); |
290 return (cstat[i]==CPX_BASIC); |
291 delete[] cstat; |
|
292 return result; |
|
293 } |
291 } |
294 |
292 |
295 //7.5-os cplex statusai (Vigyazat: a 9.0-asei masok!) |
293 //7.5-os cplex statusai (Vigyazat: a 9.0-asei masok!) |
296 // This table lists the statuses, returned by the CPXgetstat() routine, for solutions to LP problems or mixed integer problems. If no solution exists, the return value is zero. |
294 // This table lists the statuses, returned by the CPXgetstat() routine, for solutions to LP problems or mixed integer problems. If no solution exists, the return value is zero. |
297 |
295 |