ColName() -> colName(), Coeff() -> coeff()
authorathos
Mon, 30 Oct 2006 12:01:51 +0000
changeset 2268ad15bdd334bf
parent 2267 3575f17a6e7f
child 2269 fb1c634fff29
ColName() -> colName(), Coeff() -> coeff()
lemon/lp_base.h
     1.1 --- a/lemon/lp_base.h	Mon Oct 30 11:32:19 2006 +0000
     1.2 +++ b/lemon/lp_base.h	Mon Oct 30 12:01:51 2006 +0000
     1.3 @@ -889,7 +889,7 @@
     1.4      
     1.5      ///\param c is the coresponding coloumn 
     1.6      ///\return The name of the colunm
     1.7 -    std::string ColName(Col c){
     1.8 +    std::string colName(Col c){
     1.9        std::string name;
    1.10        _getColName(cols.floatingId(c.id), name);
    1.11        return name;
    1.12 @@ -899,7 +899,7 @@
    1.13      
    1.14      ///\param c is the coresponding coloumn 
    1.15      ///\param name The name to be given
    1.16 -    void ColName(Col c, const std::string & name){
    1.17 +    void colName(Col c, const std::string & name){
    1.18        _setColName(cols.floatingId(c.id), name);
    1.19      }
    1.20      
    1.21 @@ -909,7 +909,7 @@
    1.22      ///\param c is the coloumn of the element to be modified
    1.23      ///\param val is the new value of the coefficient
    1.24  
    1.25 -    void Coeff(Row r, Col c, Value val){
    1.26 +    void coeff(Row r, Col c, Value val){
    1.27        _setCoeff(rows.floatingId(r.id),cols.floatingId(c.id), val);
    1.28      }
    1.29