COIN-OR::LEMON - Graph Library

Changeset 2415:ef13597d249a in lemon-0.x for lemon


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.

Location:
lemon
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_cplex.cc

    r2391 r2415  
    136136  }
    137137
    138   void LpSoplex::_getRowCoeffs(int i, RowIterator b) const {
     138  void LpCplex::_getRowCoeffs(int i, RowIterator b) const {
    139139    /// \todo implement
    140140  }
     
    156156  }
    157157
    158   void LpSoplex::_getColCoeffs(int i, ColIterator b) const {
     158  void LpCplex::_getColCoeffs(int i, ColIterator b) const {
    159159    /// \todo implement
    160160  }
     
    397397    //method = CPXgetmethod (env, lp);
    398398    //printf("CPXgetprobtype %d \n",CPXgetprobtype(env,lp));
    399     status = CPXgetobjval(env, lp, &objval);
     399    CPXgetobjval(env, lp, &objval);
    400400    //printf("Objective value: %g \n",objval);
    401401    return objval;
  • 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.