Changeset 2268:ad15bdd334bf in lemon-0.x
- Timestamp:
- 10/30/06 13:01:51 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3026
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/lp_base.h
r2267 r2268 890 890 ///\param c is the coresponding coloumn 891 891 ///\return The name of the colunm 892 std::string ColName(Col c){892 std::string colName(Col c){ 893 893 std::string name; 894 894 _getColName(cols.floatingId(c.id), name); … … 900 900 ///\param c is the coresponding coloumn 901 901 ///\param name The name to be given 902 void ColName(Col c, const std::string & name){902 void colName(Col c, const std::string & name){ 903 903 _setColName(cols.floatingId(c.id), name); 904 904 } … … 910 910 ///\param val is the new value of the coefficient 911 911 912 void Coeff(Row r, Col c, Value val){912 void coeff(Row r, Col c, Value val){ 913 913 _setCoeff(rows.floatingId(r.id),cols.floatingId(c.id), val); 914 914 }
Note: See TracChangeset
for help on using the changeset viewer.