COIN-OR::LEMON - Graph Library

Changeset 2415:ef13597d249a in lemon-0.x for lemon/mip_cplex.cc


Ignore:
Timestamp:
03/27/07 11:23:33 (17 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3246
Message:

I only corrected bugs to make things compile: some featured not implemented here yet.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/mip_cplex.cc

    r2391 r2415  
    6262   
    6363    char ctype[1];
    64     status = CPXgetctype (env, lp, ctype, i, i);
     64    CPXgetctype (env, lp, ctype, i, i);
    6565    switch (ctype[0]){
    6666
     
    128128  MipCplex::Value MipCplex::_getPrimalValue() const {
    129129    Value objval;
    130     status = CPXgetmipobjval(env, lp, &objval);
     130    CPXgetmipobjval(env, lp, &objval);
    131131    return objval;
    132132  }
Note: See TracChangeset for help on using the changeset viewer.