[Lemon-commits] [lemon_svn] athos: r3026 - hugo/trunk/lemon
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 21:51:55 CET 2006
Author: athos
Date: Mon Oct 30 13:01:51 2006
New Revision: 3026
Modified:
hugo/trunk/lemon/lp_base.h
Log:
ColName() -> colName(), Coeff() -> coeff()
Modified: hugo/trunk/lemon/lp_base.h
==============================================================================
--- hugo/trunk/lemon/lp_base.h (original)
+++ hugo/trunk/lemon/lp_base.h Mon Oct 30 13:01:51 2006
@@ -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);
}
More information about the Lemon-commits
mailing list