lemon/lp_cplex.cc
changeset 1895 5b01801efbc0
parent 1875 98698b69a902
child 1950 a1a6f5b788bd
     1.1 --- a/lemon/lp_cplex.cc	Sat Jan 14 08:17:00 2006 +0000
     1.2 +++ b/lemon/lp_cplex.cc	Sat Jan 14 08:44:59 2006 +0000
     1.3 @@ -80,7 +80,17 @@
     1.4    void LpCplex::_eraseRow(int i) {
     1.5      CPXdelrows(env, lp, i, i);
     1.6    }
     1.7 -
     1.8 +  
     1.9 +  void LpCplex::_getColName(int col, std::string &name)
    1.10 +  {
    1.11 +    ///\bug Unimplemented
    1.12 +  }
    1.13 +  
    1.14 +  void LpCplex::_setColName(int col, const std::string &name)
    1.15 +  {
    1.16 +    ///\bug Untested
    1.17 +    CPXchgcolname(env, lp, 1, &col, const_cast<char*>(name.c_str()));
    1.18 +  }
    1.19    
    1.20    ///\warning Data at index 0 is ignored in the arrays.
    1.21    void LpCplex::_setRowCoeffs(int i,