COIN-OR::LEMON - Graph Library

Changeset 2268:ad15bdd334bf in lemon-0.x


Ignore:
Timestamp:
10/30/06 13:01:51 (17 years ago)
Author:
athos
Branch:
default
Phase:
public
Convert:
svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3026
Message:

ColName?() -> colName(), Coeff() -> coeff()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • lemon/lp_base.h

    r2267 r2268  
    890890    ///\param c is the coresponding coloumn
    891891    ///\return The name of the colunm
    892     std::string ColName(Col c){
     892    std::string colName(Col c){
    893893      std::string name;
    894894      _getColName(cols.floatingId(c.id), name);
     
    900900    ///\param c is the coresponding coloumn
    901901    ///\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){
    903903      _setColName(cols.floatingId(c.id), name);
    904904    }
     
    910910    ///\param val is the new value of the coefficient
    911911
    912     void Coeff(Row r, Col c, Value val){
     912    void coeff(Row r, Col c, Value val){
    913913      _setCoeff(rows.floatingId(r.id),cols.floatingId(c.id), val);
    914914    }
Note: See TracChangeset for help on using the changeset viewer.