Changeset 2415:ef13597d249a in lemon-0.x
- Timestamp:
- 03/27/07 11:23:33 (16 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3246
- Location:
- lemon
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/lp_cplex.cc
r2391 r2415 136 136 } 137 137 138 void Lp Soplex::_getRowCoeffs(int i, RowIterator b) const {138 void LpCplex::_getRowCoeffs(int i, RowIterator b) const { 139 139 /// \todo implement 140 140 } … … 156 156 } 157 157 158 void Lp Soplex::_getColCoeffs(int i, ColIterator b) const {158 void LpCplex::_getColCoeffs(int i, ColIterator b) const { 159 159 /// \todo implement 160 160 } … … 397 397 //method = CPXgetmethod (env, lp); 398 398 //printf("CPXgetprobtype %d \n",CPXgetprobtype(env,lp)); 399 status =CPXgetobjval(env, lp, &objval);399 CPXgetobjval(env, lp, &objval); 400 400 //printf("Objective value: %g \n",objval); 401 401 return objval; -
lemon/mip_cplex.cc
r2391 r2415 62 62 63 63 char ctype[1]; 64 status =CPXgetctype (env, lp, ctype, i, i);64 CPXgetctype (env, lp, ctype, i, i); 65 65 switch (ctype[0]){ 66 66 … … 128 128 MipCplex::Value MipCplex::_getPrimalValue() const { 129 129 Value objval; 130 status =CPXgetmipobjval(env, lp, &objval);130 CPXgetmipobjval(env, lp, &objval); 131 131 return objval; 132 132 }
Note: See TracChangeset
for help on using the changeset viewer.