diff -r 3575f17a6e7f -r ad15bdd334bf lemon/lp_base.h --- a/lemon/lp_base.h Mon Oct 30 11:32:19 2006 +0000 +++ b/lemon/lp_base.h Mon Oct 30 12:01:51 2006 +0000 @@ -889,7 +889,7 @@ ///\param c is the coresponding coloumn ///\return The name of the colunm - std::string ColName(Col c){ + std::string colName(Col c){ std::string name; _getColName(cols.floatingId(c.id), name); return name; @@ -899,7 +899,7 @@ ///\param c is the coresponding coloumn ///\param name The name to be given - void ColName(Col c, const std::string & name){ + void colName(Col c, const std::string & name){ _setColName(cols.floatingId(c.id), name); } @@ -909,7 +909,7 @@ ///\param c is the coloumn of the element to be modified ///\param val is the new value of the coefficient - void Coeff(Row r, Col c, Value val){ + void coeff(Row r, Col c, Value val){ _setCoeff(rows.floatingId(r.id),cols.floatingId(c.id), val); }